from fastapi import APIRouter router = APIRouter(tags=["health"]) @router.get("/health") def health(): return {"ok": True, "service": "clusterbuster-api"}