Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
michaelj/FastAPI_img2img
michaelj
/
FastAPI_lcm_docker
like
2
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
26e43fa
FastAPI_lcm_docker
/
main.py
Queensly
Added files
3671cba
over 1 year ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}