Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Hans-Den/load-balancer
Hans-Den
/
instance1
like
0
Running
App
Files
Files
Community
15d97c1
instance1
/
app.py
ChandimaPrabath
init
15d97c1
3 months ago
raw
Copy download link
history
blame
Safe
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}