File size: 129 Bytes
876b12f
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from fastapi import APIRouter

router = APIRouter()

@router.get("/")
async def health_check():
    return {"status": "healthy"}