@nexex/orderbook
Version:
18 lines • 500 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var lodash_1 = require("lodash");
var DEFAULT_ZMQ_CONFIG = {
nodes: [],
taskNode: ''
};
var ObConfig = /** @class */ (function () {
function ObConfig(config) {
this.isTaskWorker = true;
this.isAllInOneNode = false;
this.zmq = DEFAULT_ZMQ_CONFIG;
lodash_1.assign(this, config);
}
return ObConfig;
}());
exports.ObConfig = ObConfig;
//# sourceMappingURL=global.model.js.map