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/health.rs Normal file
View File

@@ -0,0 +1,9 @@
use axum::{Router, http::StatusCode, routing};
pub async fn get() -> Result<StatusCode, StatusCode> {
Ok(StatusCode::OK)
}
pub fn routes() -> Router {
Router::new().route("/", routing::get(get))
}