Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
hugsid
/
Backend
like
0
Sleeping
App
Files
Files
Community
ca73534
Backend
/
app.py
SiddarthaRachakonda
added app:main
afe6333
about 2 months ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}