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