Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pingora-proxy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
//! run it.
//!
//! See `examples/load_balancer.rs` for a detailed example.
//!
//! For an introduction to this crate's interfaces and the stages of a request, see the
//! [user guide](https://github.com/cloudflare/pingora/blob/main/docs/user_guide/index.md).

use async_trait::async_trait;
use bytes::Bytes;
Expand Down
3 changes: 3 additions & 0 deletions pingora/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
//!
//! If looking to build a (reverse) proxy, see [`pingora-proxy`](https://docs.rs/pingora-proxy) crate.
//!
//! The [user guide](https://github.com/cloudflare/pingora/blob/main/docs/user_guide/index.md) introduces
//! both crates and walks through building a proxy with them.
//!
//! # Feature flags
#![cfg_attr(
feature = "document-features",
Expand Down
Loading