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, and server orchestration.
5
6pub mod dynamic_tls;
7pub mod service;
8
9// Re-export main types
10pub use dynamic_tls::DynamicTlsHandler;
11pub use service::WebServerService;