dockertutorial / main.py
tjtanaa's picture
add simple example main
436e85e
raw
history blame
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}