Skip to main content

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 tls;
9mod web_service;
10
11pub use entrypoints::{
12    run, run_with_bind, run_with_bind_and_static, run_with_bind_and_static_tls, run_with_bind_tls,
13    run_with_tls,
14};
15pub use web_service::WebService;
16
17#[cfg(test)]
18mod tests;