Files
walkup/backend/app/routes/health.py
2026-04-22 06:46:23 -05:00

10 lines
158 B
Python

from fastapi import APIRouter
router = APIRouter(tags=["health"])
@router.get("/health")
def healthcheck() -> dict[str, str]:
return {"status": "ok"}