Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ProjectFrozone
/
Site
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Site
/
app.py
GalaxyTab
added app.py
6fe667b
25 days ago
raw
Copy download link
history
blame
contribute
delete
120 Bytes
from
fastapi
import
FastAPI
import
json
app = FastAPI()
@app.get(
"/"
)
def
statusCheck
():
return
{
"status"
:
"running"
}