test-docker / app.py
jm0x's picture
Add application file
446c036
Raw
History Blame Contribute Delete
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get('/')
def greet_json():
return {"Hello": "World!"}