webconsole/src/global/app.ts

10 lines
315 B
TypeScript

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();
};