Files
xtts-server/gateway/api/health.py

8 lines
118 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/")
async def health():
return {"status": "ok"}