summaryrefslogtreecommitdiffstats
path: root/aurweb/asgi.py
blob: 5f30471a3334059942e82761b73e631336b8259e (plain)
1
2
3
4
5
6
7
8
from fastapi import FastAPI

app = FastAPI()


@app.get("/hello/")
async def hello():
    return {"message": "Hello from FastAPI!"}