瀏覽代碼

open software

gaoshuaixing 4 年之前
父節點
當前提交
b2dea5c4ac
共有 2 個文件被更改,包括 19 次插入0 次删除
  1. 15 0
      electron/lib/openSoftware.js
  2. 4 0
      electron/preferences.js

+ 15 - 0
electron/lib/openSoftware.js

@@ -0,0 +1,15 @@
+const { app } = require('electron');
+
+class OpenSoftware {
+	constructor () {
+		if (typeof this.instance === 'object') {
+			return this.instance;
+		}
+	}
+  test () {
+    
+    return true;
+  }
+}
+
+module.exports = OpenSoftware;

+ 4 - 0
electron/preferences.js

@@ -13,4 +13,8 @@ module.exports = () => {
 
   // awaken 
   awaken.setup();
+
+  // Open third party software
+  
+  
 }