diff --git a/src/global/app.ts b/src/global/app.ts index 826167f..b1f471e 100644 --- a/src/global/app.ts +++ b/src/global/app.ts @@ -1,7 +1,9 @@ +import { Api } from "../components/api" export default async () => { /** * The code to be executed should be placed within a default function that is * exported by the global script. Ensure all of the code in the global script * is wrapped in the function() that is exported. */ + Api.getApiurl(); };