MukeshKapoor25's picture
Add initial project structure with Dockerfile, environment configuration, and FastAPI setup
230f597
raw
history blame contribute delete
210 Bytes
"""Tracker router."""
from fastapi import APIRouter
router = APIRouter(prefix="/tracker", tags=["tracker"])
@router.get("/ping")
async def ping():
"""Simple ping endpoint."""
return {"status": "ok"}