demo / backend /routes /health.py
tfrere's picture
first commit
970eef1
raw
history blame
251 Bytes
from fastapi import APIRouter
router = APIRouter(tags=["health"])
@router.get("/health")
async def health_check():
"""
Check if the API is running properly
Returns:
Dictionary with status
"""
return {"status": "ok"}