use axum::Json; use serde_json::{json, Value}; pub async fn health() -> Json { Json(json!({ "status": "ok", "version": "1.0.0" })) }