this repo has no description
at main 12 lines 189 B view raw
1use axum::Router; 2 3pub mod auth; 4pub mod nginx; 5 6pub fn routes() -> Router{ 7 let router = Router::new() 8 .nest("/auth", auth::routes()) 9 .nest("/nginx", nginx::routes()); 10 11 router 12}