Files
imphnen-backend-service/imphnen-apis/src/apps/v2/mod.rs
T

10 lines
194 B
Rust

use axum::Router;
pub mod auth;
pub use auth::*;
pub async fn routes() -> Router {
let public_routes = Router::new().nest("/auth", auth::auth_router());
Router::new().merge(public_routes)
}