tickethub/backend/app/routers/health.py

8 lines
159 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/health")
async def health_check():
return {"status": "healthy", "service": "tickethub"}