Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Esti-tech
/
temple
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4e68ef5
temple
/
app.py
Fasika
Add application file
a6e5f2e
6 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!"
}