7 lines
139 B
Rust
7 lines
139 B
Rust
use axum::response::Json;
|
|
use serde_json::{Value, json};
|
|
|
|
pub async fn healthcheck() -> Json<Value> {
|
|
Json(json!({"healthy": true}))
|
|
}
|