7 lines
139 B
Python
7 lines
139 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter(tags=["Health"])
|
|
|
|
@router.head("/")
|
|
async def health_check():
|
|
return {"status": "ok"} |