from fastapi import FastAPI

api = FastAPI()


@api.get("/")
def root():
    return {"module": "api", "object": "api"}
