@sync-in/server
Version:
The secure, open-source platform for file storage, sharing, collaboration, and sync
30 lines (29 loc) • 898 B
JavaScript
/*
* Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com>
* This file is part of Sync-in | The open source file sync and share solution
* See the LICENSE file for licensing details
*/ "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: Object.getOwnPropertyDescriptor(all, name).get
});
}
_export(exports, {
get SCHEDULER_ENV () {
return SCHEDULER_ENV;
},
get SCHEDULER_STATE () {
return SCHEDULER_STATE;
}
});
const SCHEDULER_ENV = 'SCHEDULER';
var SCHEDULER_STATE = /*#__PURE__*/ function(SCHEDULER_STATE) {
SCHEDULER_STATE["ENABLED"] = "enabled";
SCHEDULER_STATE["DISABLED"] = "disabled";
return SCHEDULER_STATE;
}({});
//# sourceMappingURL=scheduler.constants.js.map