@63pokupki/nodejs-common
Version:
Common nodejs functionality
14 lines • 399 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Конструктор для консольных команд
*/
class BaseCommand {
constructor(ctx) {
this.db = ctx.infrastructure.mysql;
this.errorSys = ctx.sys.errorSys;
this.userSys = ctx.sys.userSys;
}
}
exports.default = BaseCommand;
//# sourceMappingURL=BaseCommand.js.map