docker_guide / main.py
zhnliving's picture
guide first step
2a918cf
raw
history blame contribute delete
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}