File size: 210 Bytes
230f597
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""Tracker router."""
from fastapi import APIRouter

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


@router.get("/ping")
async def ping():
    """Simple ping endpoint."""
    return {"status": "ok"}