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