mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-15 12:12:08 +08:00
15 lines
223 B
JavaScript
15 lines
223 B
JavaScript
const { app } = require('electron');
|
|
|
|
class OpenSoftware {
|
|
constructor () {
|
|
if (typeof this.instance === 'object') {
|
|
return this.instance;
|
|
}
|
|
}
|
|
test () {
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
module.exports = OpenSoftware; |