Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Va1km2e
/
test2
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9fada6d
test2
/
app.py
Va1km2e
Create app.py
eb0af91
verified
8 months ago
raw
Copy download link
history
blame
Safe
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}