summaryrefslogtreecommitdiff
path: root/app/routers/health.py
blob: 794a09ff21261e9e960631c8e0e2e598c0a4e8bc (plain) (blame)
1
2
3
4
5
6
7
8
from fastapi import APIRouter

router = APIRouter(tags=["health"])


@router.get("/health")
async def health() -> dict:
    return {"status": "ok"}