1 2 3 4 5 6
// inside adminx/src/health.rs use actix_web::{HttpResponse, Responder}; pub async fn health_check() -> impl Responder { HttpResponse::Ok().body("AdminX is healthy!") }