1 2 3 4 5 6
use axum::response::Json; use serde_json::json; pub async fn health_check() -> Json<serde_json::Value> { Json(json!({ "status": true })) }