Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yuchou87
/
yc
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
yc
/
main.py
yuchou87
Add application file
3c5efac
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
100 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
index
():
return
{
"hello"
:
"index"
}