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