Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Kaballas
/
Postgress
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Postgress
/
main.py
Kaballas
Create main.py
6b2008e
verified
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
106 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World"
}