Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Liuli
/
fastapi-test
like
0
Sleeping
App
Files
Files
Community
a2f32df
fastapi-test
/
app
/
main.py
Liuli
init
a2f32df
over 1 year ago
raw
Copy download link
history
blame
Safe
116 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
async
def
root
():
return
{
"message"
:
"Hello World"
}