BetterDiscordApp-rauenzi/src/index.js

13 lines
347 B
JavaScript
Raw Normal View History

2019-05-28 20:19:48 +02:00
import proxyLocalStorage from "./localstorage";
2019-05-28 23:27:25 +02:00
import Core from "./modules/core";
2019-05-28 20:19:48 +02:00
// Perform some setup
proxyLocalStorage();
const loadingIcon = document.createElement("div");
loadingIcon.className = "bd-loaderv2";
loadingIcon.title = "BandagedBD is loading...";
2019-05-28 23:27:25 +02:00
document.body.appendChild(loadingIcon);
window.Core = Core;
export default Core;