change actions to background check

This commit is contained in:
buzz-lightsnack-2007 2024-04-29 08:40:08 +08:00
parent c9322d91ff
commit c5fcf03e80
2 changed files with 7 additions and 12 deletions

View file

@ -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();
}
};

View file

@ -0,0 +1,7 @@
import EntryManager from "/scripts/GUI/entrypoints/manager.js"
export default class BackgroundCheck {
static init() {
new EntryManager();
};
};