mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-14 11:52:07 +08:00
13 lines
184 B
JavaScript
13 lines
184 B
JavaScript
'use strict';
|
|
|
|
const shortcut = require('./lib/shortcut');
|
|
const tray = require('./lib/tray');
|
|
|
|
module.exports = () => {
|
|
// shortcut
|
|
shortcut.setup();
|
|
|
|
// tray
|
|
tray.setup();
|
|
}
|