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

8 lines
120 B
Rust
Raw Normal View History

2025-02-25 02:00:19 +07:00
use axum::Router;
2025-02-03 21:53:42 +07:00
pub mod auth;
2025-02-25 02:00:19 +07:00
pub async fn routes() -> Router {
Router::new().nest("/auth", auth::auth_router())
}