mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-14 20:58:41 -09:00
14 lines
241 B
JavaScript
14 lines
241 B
JavaScript
module.exports = (commands, update) => {
|
|
return {
|
|
label: 'Plugins',
|
|
submenu: [
|
|
{
|
|
label: 'Update',
|
|
accelerator: commands['plugins:update'],
|
|
click() {
|
|
update();
|
|
}
|
|
}
|
|
]
|
|
};
|
|
};
|