9 lines
134 B
Python
9 lines
134 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter(prefix="/api")
|
|
|
|
|
|
@router.get("/health")
|
|
async def health():
|
|
return {"ok": True}
|