from fastapi import FastAPI

run = FastAPI()

@run.get("/")
async def root():
    return {"message": "Hello World"}
