Added more code

This commit is contained in:
2025-04-01 20:56:25 -04:00
parent f9a3103616
commit e17a304896
3 changed files with 19 additions and 0 deletions

View File

@@ -19,6 +19,7 @@ async fn main() {
// build our application with a route
let app = Router::new()
.layer(axum::Extension(pool))
.route(callers::endpoints::DBTEST, get(callers::common::db_ping))
.route(callers::endpoints::ROOT, get(callers::common::root))
.route(
callers::endpoints::REGISTER,