sv-task / src /api /health.py
lamossta's picture
api routers
a559d4f
raw
history blame contribute delete
127 Bytes
from fastapi import APIRouter
router = APIRouter()
@router.get("/health")
def health() -> dict:
return {"status": "ok"}