Spaces:
Sleeping
Sleeping
File size: 328 Bytes
3444a36 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import json
import logging
from fastapi import APIRouter
router = APIRouter()
@router.get("/health")
def health():
try:
logging.info("health check")
return json.dumps({"msg": "ok"})
except Exception as e:
logging.error(f"exception:{e}.")
return json.dumps({"msg": "request failed"})
|