Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
om1chael
/
Pygame-story
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b7ffc14
Pygame-story
/
app.py
om1chael
Add application file-2
c3ccf94
about 2 years ago
raw
Copy download link
history
blame
127 Bytes
from
fastapi
import
FastAPI
from
app
import
app
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}