//! HTTP echo server implementation
//!
//! This module provides HTTP echo server functionality that echoes HTTP requests
//! back as HTTP responses, preserving headers and request body.
pub use crate;
pub use HttpConfig;
pub use HttpProtocol;
/// Type alias for HTTP echo server
pub type HttpEchoServer = ;
/// Type alias for HTTP echo client
pub type HttpEchoClient = ;