change actions to background check
This commit is contained in:
parent
c9322d91ff
commit
c5fcf03e80
2 changed files with 7 additions and 12 deletions
|
@ -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();
|
|
||||||
}
|
|
||||||
};
|
|
7
scripts/background/background.check.js
Normal file
7
scripts/background/background.check.js
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
import EntryManager from "/scripts/GUI/entrypoints/manager.js"
|
||||||
|
|
||||||
|
export default class BackgroundCheck {
|
||||||
|
static init() {
|
||||||
|
new EntryManager();
|
||||||
|
};
|
||||||
|
};
|
Loading…
Add table
Add a link
Reference in a new issue