Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cedricable
/
oh-docker
like
0
Sleeping
App
Files
Files
Community
2f3398f
oh-docker
/
main.py
cedricable
Rename app.py to main.py
2f3398f
about 2 years ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}