krz/hutch-notify

Notification server for Hutch.

clone: git clone https://gitbay.org/krz/hutch-notify.git

main: app/routers/health.py · raw

1from fastapi import APIRouter
2
3router = APIRouter(tags=["health"])
4
5
6@router.get("/health")
7async def health() -> dict:
8    return {"status": "ok"}