samu's picture
testing docker
a1f8769
Raw
History Blame Contribute Delete
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}