rubick/api/operators/common.js
2021-06-02 17:17:09 +08:00

8 lines
117 B
JavaScript

const { shell } = require('electron');
module.exports = {
openInBrowser(url) {
shell.openExternal(url);
}
}