diff --git a/endpoints/service.get.py b/endpoints/service.get.py new file mode 100644 index 0000000..906086a --- /dev/null +++ b/endpoints/service.get.py @@ -0,0 +1,9 @@ +# Entity: HealthCheck + +from fastapi import APIRouter, status + +router = APIRouter() + +@router.get("/api/health", status_code=status.HTTP_200_OK) +async def health_check(): + return {"status": "OK"} \ No newline at end of file