Spaces:
Runtime error
Runtime error
| # api/v1/system.py | |
| from fastapi import APIRouter | |
| router = APIRouter(prefix="/health", tags=["Health Check"]) | |
| # --------------------------- | |
| # Debug endpoint (optional) | |
| # --------------------------- | |
| def ping(): | |
| return {"message": "pong"} |