summaryrefslogtreecommitdiff
path: root/app/main.py
blob: 701c0308fe5adde1d94951cf33c4d48083d08bfc (plain)
1
2
3
4
5
6
7
8
9
10
from fastapi import FastAPI

app = FastAPI()


@app.get("/")
def read_root():

    msg = "Hello    Berries!"
    return {"message": msg}