1 2 3 4 5 6 7 8 9
use axum::Json; use serde_json::json; pub(crate) async fn health() -> Json<serde_json::Value> { Json(json!({ "status": "ok", "service": "alpaca-mock", })) }