from fastapi import fastAPI

app = fastAPI()

app.get("/")

def greet_json():
    return { "Hello": "World" }