jammi-server 0.1.2

Arrow Flight SQL server and health probe for Jammi AI
Documentation
1
2
3
4
5
6
7
use axum::Json;
use serde_json::{json, Value};

/// GET /health — returns `{"status": "ok"}` without touching the database.
pub async fn health() -> Json<Value> {
    Json(json!({ "status": "ok" }))
}