//! 健康检查接口 use axum::Json; use serde_json::{json, Value}; /// GET /api/health — 服务健康检查 pub async fn health_check() -> Json { Json(json!({ "status": "ok" })) }