Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wozwize
/
media-unmasked-api
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4d352a6
media-unmasked-api
/
app
/
routers
/
health.py
wozwize
initial commit of media-unmasked-api to huggingface
876b12f
8 days ago
raw
Copy download link
history
blame
Safe
129 Bytes
from
fastapi
import
APIRouter
router = APIRouter()
@router.get(
"/"
)
async
def
health_check
():
return
{
"status"
:
"healthy"
}