dockertutorial / main.py
Geemobeamo's picture
dependencies and app
8d30548
raw
history blame contribute delete
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}