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 audit_api;
7pub mod auth_api;
8pub mod config_api;
9pub mod demo_api;
10pub mod handlers;
11#[cfg(feature = "prime")]
12pub mod prime_api;
13#[cfg(feature = "multi-tenant")]
14pub mod tenant_api;
15pub mod websocket;
16
17// Public API re-exports
18pub use api::serve;
19pub use websocket::{EventFilters, WebSocketConfig, WebSocketManager, WebSocketStats};
20
21// Handler state re-exports for convenience
22pub use handlers::{
23    ArticleHandlerState, CreatorHandlerState, ForkHandlerState, PaymentHandlerState,
24};