summaryrefslogtreecommitdiff
path: root/src/health.rs
blob: daa2f432d13b3fdc3d6993769b685bf04ca039ab (plain)
1
2
3
4
5
6
use axum::{response::IntoResponse, Json};
use serde_json::json;

pub async fn health_handler() -> impl IntoResponse {
    Json(json!({"status": "ok"}))
}