1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! Unified HTTP server entry points //! //! Consolidates run(), run_with_bind(), WebService from web_service/server.rs //! Eliminates the proxy pattern by using unified AppState mod entrypoints; mod listeners; mod tls; mod web_service; pub use entrypoints::{ run, run_with_bind, run_with_bind_and_static, run_with_bind_and_static_tls, run_with_bind_tls, run_with_tls, }; pub use web_service::WebService; #[cfg(test)] mod tests;