Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
GAS17
/
bt
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
32278b0
bt
/
app.py
GAS17
Update app.py
32278b0
verified
3 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!"
}