BetterDiscordApp-rauenzi/src/index.js

13 lines
328 B
JavaScript
Raw Normal View History

2020-07-16 07:42:56 +02:00
import secure from "./secure";
import patchModuleLoad from "./moduleloader";
2019-05-28 23:27:25 +02:00
import Core from "./modules/core";
2019-05-29 05:48:41 +02:00
import BdApi from "./modules/pluginapi";
import LoadingIcon from "./loadingicon";
2019-05-28 20:19:48 +02:00
// Perform some setup
2020-07-16 07:42:56 +02:00
secure();
patchModuleLoad();
2019-05-29 05:48:41 +02:00
window.BdApi = BdApi;
2020-07-17 02:57:48 +02:00
// Add loading icon at the bottom right
2020-07-21 17:11:52 +02:00
LoadingIcon.show();