const {getMainWindow} = require("ee-core/electron"); class IconService { update(iconPath) { const win = getMainWindow(); win.setIcon(iconPath); } } module.exports = { iconService: new IconService() };