feat: add scafolding

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-03-27 11:07:54 +00:00
parent 0e141eebae
commit 4f0f8ddbe1
15 changed files with 4648 additions and 100 deletions

9
src/routes/mod.rs Normal file
View File

@@ -0,0 +1,9 @@
mod health;
use axum::Router;
pub fn routes() -> Router {
let health = health::routes();
Router::new().merge(health)
}