Files
nuchat/backend/src/router/healthcheck.rs
2025-07-21 17:18:00 +01:00

7 lines
139 B
Rust

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