from fastapi import APIRouter router = APIRouter() @router.get("/") async def health_check(): """Returns service health status.""" return {"status": "ok"}