s-bit-agent
Version:
s.BitAgent is a simple Bitwarden CLI wrapper which provides a SSH2 Key Agent solution for Bitwarden.
35 lines • 1.69 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.CliModule = void 0;
const common_1 = require("@nestjs/common");
const key_module_1 = require("./key/key.module");
const bw_command_1 = require("./bw.command");
const bwa_command_1 = require("./bwa.command");
const daemon_command_1 = require("./daemon.command");
const status_command_1 = require("./status.command");
const setup_command_1 = require("./setup.command");
const license_command_1 = require("./license.command");
const cache_module_1 = require("./cache/cache.module");
let CliModule = class CliModule {
};
exports.CliModule = CliModule;
exports.CliModule = CliModule = __decorate([
(0, common_1.Module)({
imports: [key_module_1.KeyModule, cache_module_1.CacheModule],
providers: [
bw_command_1.BwCommand,
bwa_command_1.BwaCommand,
daemon_command_1.DaemonCommand,
license_command_1.LicenseCommand,
status_command_1.StatusCommand,
setup_command_1.SetupCommand,
],
})
], CliModule);
//# sourceMappingURL=cli.module.js.map