aboutsummaryrefslogtreecommitdiffstats
path: root/api/app/api/routes/utils.py
blob: af3c87175d656049327dce70d8cd36768e3e3993 (plain)
1
2
3
4
5
6
7
from fastapi import APIRouter

router = APIRouter(prefix="/utils", tags=["utils"])

@router.get("/health-check/")
async def health_check() -> bool:
    return True