mirror of
https://github.com/rubickCenter/rubick
synced 2025-06-24 13:22:42 +08:00
8 lines
117 B
JavaScript
8 lines
117 B
JavaScript
const { shell } = require('electron');
|
|
|
|
module.exports = {
|
|
openInBrowser(url) {
|
|
shell.openExternal(url);
|
|
}
|
|
}
|