use actix_web::{HttpResponse, Result, get}; use serde_json::json; #[get("/health")] pub async fn health_check() -> Result { Ok(HttpResponse::Ok().json(json!({ "status": "ok", "service": "calendar-microservice", "timestamp": chrono::Utc::now() }))) }