1 2 3 4 5 6 7
from fastapi import APIRouter router = APIRouter(prefix="/utils", tags=["utils"]) @router.get("/health-check/") async def health_check() -> bool: return True