FBChatBot / app /health.py
VietCat's picture
init project using Cursor
dbb6988
raw
history blame contribute delete
131 Bytes
from fastapi import APIRouter
router = APIRouter()
@router.get("/healthz")
async def health_check():
return {"status": "ok"}