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

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