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