gendesign/backend/app/api/v1/ping.py
bot-backend dc8f3f2019 feat(backend): add /api/v1/ping liveness endpoint
Noop liveness probe returning {"pong": true}. Registered as a public
path (no Caddy/RBAC auth) like /health so external monitoring can reach
it. Adds unit test via FastAPI TestClient.

Closes #633
2026-05-29 00:25:15 +03:00

8 lines
138 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/ping")
async def ping() -> dict[str, bool]:
return {"pong": True}