Files
electron-egg/electron/lib/openSoftware.js
gaoshuaixing b2dea5c4ac open software
2021-07-23 18:54:43 +08:00

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;