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

View File

@@ -0,0 +1,11 @@
use axum::Router;
use crate::app::AppState;
use crate::network::http::AppRouter;
mod api;
pub fn setup_route() -> AppRouter {
AppRouter::new()
.nest("/api", api::setup_route())
}