Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
UcsTurkey
/
flare
like
0
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
c42d836
flare
/
controllers
/
health_controller.py
ciyidogan
Update controllers/health_controller.py
d05a368
verified
4 months ago
raw
Copy download link
history
blame
Safe
112 Bytes
from
fastapi
import
APIRouter
router = APIRouter()
@router.get(
"/"
)
def
health
():
return
{
"status"
:
"ok"
}