rama_haproxy/
lib.rs

1//! rama HaProxy support
2//!
3//! <https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt>
4//!
5//! Crate used by the end-user `rama` crate and `rama` crate authors alike.
6//!
7//! Learn more about `rama`:
8//!
9//! - Github: <https://github.com/plabayo/rama>
10//! - Book: <https://ramaproxy.org/book/>
11
12pub mod client;
13pub mod protocol;
14pub mod server;