feat: user relation

This commit is contained in:
Maulana Sodiqin
2025-03-14 17:50:37 +07:00
parent 9ffe808797
commit 7ab036f5f7
22 changed files with 358 additions and 28 deletions
+7 -1
View File
@@ -1,11 +1,17 @@
use axum::Router;
pub mod auth;
pub mod docs;
pub mod gacha;
pub mod users;
pub use auth::*;
pub use docs::*;
pub use gacha::*;
pub use users::*;
pub async fn routes() -> Router {
Router::new().nest("/auth", auth::auth_router())
Router::new()
.nest("/auth", auth_router())
.nest("/gacha", gacha_router())
}