dsmultimedika's picture
Build Application
9002555
raw
history blame
268 Bytes
from fastapi import Request
from fastapi.responses import JSONResponse
from fastapi.routing import APIRouter
router = APIRouter(tags=["Health"])
@router.get("/_health")
async def health(request: Request):
return JSONResponse(dict(status="OK"), status_code=200)