diff options
Diffstat (limited to 'app/routers/health.py')
| -rw-r--r-- | app/routers/health.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/routers/health.py b/app/routers/health.py new file mode 100644 index 0000000..794a09f --- /dev/null +++ b/app/routers/health.py @@ -0,0 +1,8 @@ +from fastapi import APIRouter + +router = APIRouter(tags=["health"]) + + [email protected]("/health") +async def health() -> dict: + return {"status": "ok"} |
