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...
86d35e2
Pygame-story
/
Code
/
app.py
om1chael
test
86d35e2
about 2 years ago
raw
Copy download link
history
blame
131 Bytes
from
fastapi
import
FastAPI
from
flask
import
Flask
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}