test-docker / main.py
daniel-de-leon's picture
add reqs and app file
5f2848a
raw
history blame
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get('/')
def read_root():
return {"Hello": "World!"}