add user endpoint

This commit is contained in:
2025-08-15 18:38:57 -04:00
parent 34a6f211de
commit 8a05f4edac
8 changed files with 72 additions and 1 deletions

View File

@@ -44,6 +44,7 @@ async fn main() {
let app = Router::new()
// .nest("/health", routes::health::health::health_routes())
.nest("/health", routes::health::health::health_routes())
.nest("/user", routes::user::user::user_routes())
.layer(TraceLayer::new_for_http());
// Run the server