flare / controllers /health_controller.py
ciyidogan's picture
Update controllers/health_controller.py
d05a368 verified
raw
history blame
112 Bytes
from fastapi import APIRouter
router = APIRouter()
@router.get("/")
def health():
return {"status": "ok"}