use axum::Router; pub mod auth; pub mod nginx; pub fn routes() -> Router{ let router = Router::new() .nest("/auth", auth::routes()) .nest("/nginx", nginx::routes()); router }