Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
atonyxu
/
code
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4cbbf07
code
/
main.py
atonyxu
code
4cbbf07
4 months ago
raw
Copy download link
history
blame
Safe
116 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"message"
:
"Hello, World!"
}