use axum::{Json, http, response::IntoResponse}; use serde::Serialize; #[derive(Serialize)] pub(crate) struct HealthResponse { pub(crate) status: &'static str, } pub(crate) async fn health_check() -> impl IntoResponse { ( http::StatusCode::OK, Json(HealthResponse { status: "healthy" }), ) }