//! HTTP handlers. pub mod auth; use axum::Json; use serde_json::{Value, json}; /// Liveness. Says nothing about the database on purpose: a health check that /// touches storage turns a slow query into an outage. pub async fn health() -> Json { json!({ "status": "ok", "service": "runway", "version": env!("CARGO_PKG_VERSION") }).into() }