allsource_core/infrastructure/web/mod.rs
1// Web layer - HTTP handlers, WebSocket, and API routes
2// Clean Architecture: Infrastructure Layer
3
4pub mod api;
5pub mod api_v1;
6pub mod audit_api;
7pub mod auth_api;
8pub mod config_api;
9pub mod demo_api;
10pub mod handlers;
11pub mod tenant_api;
12pub mod websocket;
13
14// Public API re-exports
15pub use api::serve;
16pub use websocket::{EventFilters, WebSocketConfig, WebSocketManager, WebSocketStats};
17
18// Handler state re-exports for convenience
19pub use handlers::{
20 ArticleHandlerState, CreatorHandlerState, ForkHandlerState, PaymentHandlerState,
21};