Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
JeKaSm
/
test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8471ba9
test
/
app.py
JeKaSm
Create app.py
8471ba9
verified
15 days ago
raw
Copy download link
history
blame
Safe
106 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World"
}