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

12 lines
171 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-26 15:45:05 +07:00
pub mod users;
pub use auth::*;
pub use users::*;
2025-02-03 21:53:42 +07:00
2025-02-25 02:00:19 +07:00
pub async fn routes() -> Router {
Router::new().nest("/auth", auth::auth_router())
}