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