test-docker / main.py
reubem's picture
init commit
2f6c6a9
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}