From 78ae0d75b500defaf7e0abcb6c5bea162e21625b Mon Sep 17 00:00:00 2001 From: buzz-lightsnack-2007 <73412182+buzz-lightsnack-2007@users.noreply.github.com> Date: Sun, 28 Apr 2024 23:54:52 +0800 Subject: [PATCH] directly call Entrymanager --- scripts/actions.js | 12 ------------ scripts/background/shopAI.js | 6 ++++-- 2 files changed, 4 insertions(+), 14 deletions(-) delete mode 100644 scripts/actions.js 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/shopAI.js b/scripts/background/shopAI.js index 8d7b619..4e0f38f 100644 --- a/scripts/background/shopAI.js +++ b/scripts/background/shopAI.js @@ -3,7 +3,9 @@ Shop wisely with AI! */ import fc from './fc.js'; -import user_actions from "../actions.js"; +import EntryManager from "/scripts/GUI/entrypoints/manager.js" +import link from "../link.js"; fc.run(); -user_actions.init(); \ No newline at end of file +new EntryManager(); +new link(); \ No newline at end of file