diff --git a/scripts/actions.js b/scripts/actions.js deleted file mode 100644 index 336b215..0000000 --- a/scripts/actions.js +++ /dev/null @@ -1,12 +0,0 @@ -import Tabs from "/scripts/GUI/tabs.js"; -import EntryManager from "/scripts/GUI/entrypoints/manager.js" - -export default class user_actions { - static init() { - user_actions.tabs(); - }; - - static tabs() { - new EntryManager(); - } -}; \ No newline at end of file diff --git a/scripts/background/background.check.js b/scripts/background/background.check.js new file mode 100644 index 0000000..c37501d --- /dev/null +++ b/scripts/background/background.check.js @@ -0,0 +1,7 @@ +import EntryManager from "/scripts/GUI/entrypoints/manager.js" + +export default class BackgroundCheck { + static init() { + new EntryManager(); + }; +}; \ No newline at end of file