Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
asv7j
/
assd
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ab024e5
assd
/
app.py
asv7j
Upload 2 files
ab024e5
verified
9 months ago
raw
Copy download link
history
blame
Safe
115 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}