feat: implement surrealdb and redis

This commit is contained in:
Maulana Sodiqin
2025-02-25 02:00:19 +07:00
parent 9abab01b9c
commit 44de53a49d
18 changed files with 2501 additions and 137 deletions
+5 -1
View File
@@ -1,3 +1,7 @@
use axum::Router;
pub mod auth;
pub use auth::*;
pub async fn routes() -> Router {
Router::new().nest("/auth", auth::auth_router())
}