Mailspring/internal_packages/system-tray/lib/main.es6

15 lines
254 B
Plaintext
Raw Normal View History

import SystemTrayIconStore from './system-tray-icon-store';
export function activate() {
this.store = new SystemTrayIconStore();
this.store.activate();
}
export function deactivate() {
this.store.deactivate();
}
export function serialize() {
}