Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
zzzyuz
/
docker
like
0
Runtime error
App
Files
Files
Community
3ff0076
docker
/
main.py
zzzyuz
Rename app.py to main.py
da832ed
over 1 year ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}