mirror of
https://github.com/rubickCenter/rubick
synced 2025-07-23 16:59:33 +08:00
8 lines
117 B
JavaScript
8 lines
117 B
JavaScript
const { shell } = require('electron');
|
|
|
|
module.exports = {
|
|
openInBrowser(url) {
|
|
shell.openExternal(url);
|
|
}
|
|
}
|