use axum::{http::StatusCode, Json}; use serde_json::{json, Value}; pub async fn get_health() -> (StatusCode, Json) { ( StatusCode::OK, Json(json!({ "status": "ok", "service": "openfut-bridge", "version": env!("CARGO_PKG_VERSION"), "note": "This proxy captures FIFA 23 traffic and routes known endpoints to OpenFUT Core." })), ) }