feat: add cargo

This commit is contained in:
Maulana Sodiqin
2025-02-26 15:45:05 +07:00
parent b8606ef0bb
commit 8b2769706e
7 changed files with 125 additions and 23 deletions
+4
View File
@@ -1,6 +1,10 @@
use axum::Router;
pub mod auth;
pub mod users;
pub use auth::*;
pub use users::*;
pub async fn routes() -> Router {
Router::new().nest("/auth", auth::auth_router())