add basic backend
This commit is contained in:
6
backend/src/router/healthcheck.rs
Normal file
6
backend/src/router/healthcheck.rs
Normal file
@ -0,0 +1,6 @@
|
||||
use axum::response::Json;
|
||||
use serde_json::{Value, json};
|
||||
|
||||
pub async fn healthcheck() -> Json<Value> {
|
||||
Json(json!({"healthy": true}))
|
||||
}
|
||||
Reference in New Issue
Block a user