use axum::{routing::get, Json, Router}; use serde_json::{json, Value}; use crate::app::AppState; pub fn routes() -> Router { Router::new().route("/health", get(health)) } async fn health() -> Json { Json(json!({ "status": "ok" })) }