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