wozwize's picture
initial commit of media-unmasked-api to huggingface
876b12f
raw
history blame
129 Bytes
from fastapi import APIRouter
router = APIRouter()
@router.get("/")
async def health_check():
return {"status": "healthy"}