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