1//! Contexts and utils of HTTP Services. 2 3#[cfg(feature = "client")] 4pub mod client; 5 6#[cfg(feature = "client")] 7pub use self::client::ClientContext; 8 9#[cfg(feature = "server")] 10pub mod server; 11 12#[cfg(feature = "server")] 13pub use self::server::ServerContext;