171598e
1
2
3
4
5
6
7
8
from fastapi import APIRouter router = APIRouter() @router.get("/") def health(): return {"status": "ok"}