Skip to main content

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 auth_api;
7pub mod tenant_api;
8pub mod websocket;
9
10// Public API re-exports
11pub use api::serve;
12pub use websocket::{EventFilters, WebSocketManager, WebSocketStats};