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