from fastapi import APIRouter router = APIRouter() @router.get("/health", summary="Service health status") async def health_check() -> dict[str, str]: return {"status": "ok"}