Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wixcs
/
cskj
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e6db41c
cskj
/
main.py
wixcs
Create main.py
03b1f41
verified
5 months ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}