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

app = FastAPI()


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

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