dbb6988
1
2
3
4
5
6
7
from fastapi import APIRouter router = APIRouter() @router.get("/healthz") async def health_check(): return {"status": "ok"}