chore: re-map project structure to using multi workspace paradigm
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
use axum::Router;
|
||||
|
||||
pub mod auth;
|
||||
pub use auth::*;
|
||||
|
||||
pub async fn routes() -> Router {
|
||||
let public_routes = Router::new().nest("/auth", auth::auth_router());
|
||||
Router::new().merge(public_routes)
|
||||
}
|
||||
Reference in New Issue
Block a user