e3knew / api /health.py
AiDeveloper1's picture
Update api/health.py
eb67f93 verified
Raw
History Blame Contribute Delete
158 Bytes
from fastapi import APIRouter
# from app.config import API_VERSION
router = APIRouter()
@router.get("/health")
def health():
return {"status": "ok"}