Calin Rada
init
f006f31 unverified
raw
history blame
212 Bytes
from fastapi import APIRouter
router = APIRouter(tags=["admin"])
@router.get("/health")
async def health():
return {"health": "OK"}
@router.get("/status")
async def status():
return {"status": "OK"}