Spaces:
Sleeping
Sleeping
File size: 263 Bytes
b62e029 | 1 2 3 4 5 6 7 8 9 10 11 12 | # api/v1/system.py
from fastapi import APIRouter
router = APIRouter(prefix="/health", tags=["Health Check"])
# ---------------------------
# Debug endpoint (optional)
# ---------------------------
@router.get("/ping")
def ping():
return {"message": "pong"} |