This commit is contained in:
2025-12-13 02:15:28 +01:00
commit dbec2e9a74
58 changed files with 6177 additions and 0 deletions

15
src/network/http/mod.rs Normal file
View File

@@ -0,0 +1,15 @@
use axum::Router;
use crate::app::AppState;
mod server;
mod router;
mod middleware;
mod web;
mod error;
mod context;
pub use server::HTTPServer;
pub use error::HTTPError;
pub use context::RequestContext;
pub type AppRouter = Router<AppState>;