add.[ALL]
This commit is contained in:
parent
5ac24c8cea
commit
780ad9a200
54 changed files with 3733 additions and 0 deletions
21
.resources/app/app_bootstrap/autoStart/darwin.js
Normal file
21
.resources/app/app_bootstrap/autoStart/darwin.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.install = install;
|
||||
exports.isInstalled = isInstalled;
|
||||
exports.uninstall = uninstall;
|
||||
exports.update = update;
|
||||
function install(callback) {
|
||||
return callback();
|
||||
}
|
||||
function update(callback) {
|
||||
return callback();
|
||||
}
|
||||
function isInstalled(callback) {
|
||||
return callback(false);
|
||||
}
|
||||
function uninstall(callback) {
|
||||
return callback();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue