From 0b80fe4a939ff4ad29572f47b318e8f443d2862c Mon Sep 17 00:00:00 2001 From: Jimmy Date: Fri, 21 Jan 2022 13:54:18 +1300 Subject: [PATCH] Get api url --- src/global/app.ts | 2 ++ 1 file changed, 2 insertions(+) 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(); };