//! HTTP routing, middleware, handlers, and WebSocket support for Envoy.
//!
//! Split from the monolithic `http.rs` (1968 LOC) into focused modules:
//! - `state` — shared application state (`AppState`, `SharedState`, `WsRegistry`)
//! - `middleware` — rate limiting and auth middleware
//! - `router` — route table construction (`build_router`, `build_router_unlimited`)
//! - `types` — request/response structs
//! - `handlers` — HTTP handler functions
//! - `ws` — WebSocket handler and broadcast logic
// Re-export the public API surface so existing callers
// (`server.rs`, `lib.rs`, tests) continue to work unchanged.
pub use ;
pub use ;
pub use ;