Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
vickyvigneshmass
/
test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a5faf3c
test
/
app.py
vickyvigneshmass
Update app.py
a5faf3c
verified
8 months ago
raw
Copy download link
history
blame
112 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"welcome"
:
"Created!"
}