Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
xdragxt
/
sshx
like
0
Building
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
185bb5a
sshx
/
main.py
xdragxt
Create main.py
6437fa2
verified
13 days ago
raw
Copy download link
history
blame
Safe
117 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"message"
:
"Hello, world!"
}