om1chael's picture
updated docker file
b7ffc14
raw
history blame
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}