Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
from fastapi import APIRouter | |
router = APIRouter(tags=["health"]) | |
async def health_check(): | |
""" | |
Check if the API is running properly | |
Returns: | |
Dictionary with status | |
""" | |
return {"status": "ok"} |