mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
ded7c20fba
Summary: - See #1698 Add specs Test Plan: - Unit tests Reviewers: bengotow, evan, drew Reviewed By: drew Differential Revision: https://phab.nylas.com/D2734
14 lines
254 B
JavaScript
14 lines
254 B
JavaScript
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() {
|
|
|
|
}
|