This commit is contained in:
2025-09-28 18:38:48 +02:00
parent 8bddcc1b01
commit b8c797a2fc
55 changed files with 1645 additions and 2798 deletions

13
src/app/http/router.rs Normal file
View File

@@ -0,0 +1,13 @@
use axum::Router;
use crate::app::http::api;
use crate::app::http::api::core;
pub fn configure_routes() -> Router {
let api_router = Router::new();
Router::new()
.merge(core::routes())
.nest("/api", api_router )
}