flare / controllers /health_controller.py
ciyidogan's picture
Upload 20 files
171598e verified
raw
history blame
119 Bytes
from fastapi import APIRouter
router = APIRouter()
@router.get("/")
def health():
return {"status": "ok"}