bws_web_server/handlers/
mod.rs

1//! Request handlers for BWS Web Server
2//!
3//! This module contains all the request handlers for different types
4//! of content and functionality.
5
6pub mod api_handler;
7pub mod proxy_handler;
8pub mod static_handler;
9pub mod websocket_proxy;
10
11// Re-export handler types
12pub use api_handler::ApiHandler;
13pub use proxy_handler::ProxyHandler;
14pub use static_handler::StaticFileHandler;
15pub use websocket_proxy::WebSocketProxyHandler;