The entry points management technically falls under GUI as well

This commit is contained in:
buzz-lightsnack-2007 2024-04-27 09:16:31 +08:00
parent 45e4a54b53
commit 6265695a5c
5 changed files with 1 additions and 1 deletions

View file

@ -1,15 +0,0 @@
import BrowserIcon from '/scripts/GUI/extensionIcon.js';
import Image from '/scripts/mapping/image.js';
class IconIndicator {
static async enable() {
// WIP. Make sure to determine if the product is bad / good
BrowserIcon.set(await Image.get('default'));
}
static async disable() {
BrowserIcon.set(await Image.get('disabled'));
}
}
export {IconIndicator as default};