docker_test / app.py
anthony8lee's picture
Init
52e1a0d
raw
history blame
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}