Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wozwize
/
media-unmasked-api
like
2
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
b205dd3
media-unmasked-api
/
app
/
routers
/
health.py
wozwize
initial commit of media-unmasked-api to huggingface
876b12f
4 months 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"
}