print("Hello") from fastapi import FastAPI app = FastAPI() from app.test import test @app.get("/") async def read_root(): result = test() return {"Hello": "World"}