Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
coollsd
/
fcfffc
like
0
Running
App
Files
Files
Community
main
fcfffc
/
app.py
coollsd
Create app.py
a94eb1f
verified
13 days ago
raw
Copy download link
history
blame
contribute
delete
115 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
async
def
root
():
return
{
"message"
:
"Hello World"
}