Archived
7 lines
145 B
Rust
7 lines
145 B
Rust
use axum::Json;
|
|
use serde_json::{json, Value};
|
|
|
|
pub async fn health() -> Json<Value> {
|
|
Json(json!({ "status": "ok", "version": "1.0.0" }))
|
|
}
|