7 lines
128 B
Python
7 lines
128 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/health")
|
|
async def read_health():
|
|
return {"status": "ok"} |