bws_web_server/server/
mod.rs

1//! Server infrastructure for BWS Web Server
2//!
3//! This module contains the core server components including
4//! the main service, dynamic TLS handling, server orchestration,
5//! and the secure management API service.
6
7pub mod config_reload;
8pub mod dynamic_tls;
9pub mod management_api;
10pub mod reload_trait;
11pub mod service;
12
13// Re-export main types
14pub use config_reload::ConfigReloadService;
15pub use dynamic_tls::DynamicTlsHandler;
16pub use management_api::ManagementApiService;
17pub use reload_trait::ConfigReloadable;
18pub use service::WebServerService;