1 2 3 4 5 6 7
use axum::http::StatusCode; pub const HEALTH_PATH: &str = "/health"; pub fn route() -> StatusCode { StatusCode::OK }