use serde::Serialize; use utoipa::ToSchema; #[derive(Debug, Serialize, ToSchema)] pub struct HealthResponse { pub status: &'static str, pub service: String, } #[derive(Debug, Serialize, ToSchema)] pub struct ReadyResponse { pub status: &'static str, pub database: &'static str, }