openSoftware.js 223 B

123456789101112131415
  1. const { app } = require('electron');
  2. class OpenSoftware {
  3. constructor () {
  4. if (typeof this.instance === 'object') {
  5. return this.instance;
  6. }
  7. }
  8. test () {
  9. return true;
  10. }
  11. }
  12. module.exports = OpenSoftware;