Files

14 lines
254 B
Python

from fastapi import APIRouter
router = APIRouter(tags=["Health"])
@router.get("/healthz")
async def healthz() -> dict[str, str]:
return {"status": "ok"}
@router.get("/readyz")
async def readyz() -> dict[str, str]:
return {"status": "ready"}