# backend/api/endpoints/ping.py from fastapi import APIRouter router = APIRouter() @router.get("/") async def ping(): return {"message": "pong"}