diff --git a/scripts/actions.js b/scripts/actions.js new file mode 100644 index 0000000..336b215 --- /dev/null +++ b/scripts/actions.js @@ -0,0 +1,12 @@ +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/shopAI.js b/scripts/background/shopAI.js index 4e0f38f..8d7b619 100644 --- a/scripts/background/shopAI.js +++ b/scripts/background/shopAI.js @@ -3,9 +3,7 @@ Shop wisely with AI! */ import fc from './fc.js'; -import EntryManager from "/scripts/GUI/entrypoints/manager.js" -import link from "../link.js"; +import user_actions from "../actions.js"; fc.run(); -new EntryManager(); -new link(); \ No newline at end of file +user_actions.init(); \ No newline at end of file