Files
yanting/report-notebooklm-api/app/routers/health.py
T

10 lines
144 B
Python

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