@63pokupki/nodejs-common
Version:
Common nodejs functionality
17 lines • 453 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Базовая модель
*/
class BaseM {
constructor(ctx) {
this.errorSys = ctx.sys.errorSys;
this.userSys = ctx.sys.userSys;
this.logicSys = ctx.sys.logicSys;
this.cacheSys = ctx.sys.cacheSys;
this.ctx = ctx;
this.accessSys = ctx.sys.accessSys;
}
}
exports.default = BaseM;
//# sourceMappingURL=BaseM.js.map