Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Curify
/
Ideas
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
22e41e6
Ideas
/
app.py
qqwjq1981
Update app.py
22e41e6
verified
5 months ago
raw
Copy download link
history
blame
Safe
120 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
async
def
index
():
return
{
"message"
:
"App is running"
}