CFInsight / api /health.py
PocketSkye's picture
Deploy FastAPI app
777d84a
Raw
History Blame Contribute Delete
174 Bytes
from fastapi import APIRouter
router = APIRouter(
prefix="/health",
tags=["Health"]
)
@router.get("")
def health():
return {
"status": "healthy"
}