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