use crate;
/// Route path for the health check endpoint (`GET /health`).
pub const HEALTH_PATH: &str = "/health";
/// Static JSON body returned by the health endpoint.
pub const HEALTH_BODY: &str =
r#"{"status":"ok","service":"sim-openai-gateway","version":"0","backend":"sim"}"#;
/// Handles `GET /health`, returning the static health response.
/// Returns the static `200 OK` health response with [`HEALTH_BODY`].