Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ammaan
/
dockerhtml
like
0
No application file
App
Files
Files
Community
767e777
dockerhtml
/
main.py
ammaan
Upload 2 files
e38aaac
verified
6 months ago
raw
Copy download link
history
blame
Safe
146 Bytes
from
typing
import
Union
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World Bob"
}