s-bit-agent
Version:
s.BitAgent is a simple Bitwarden CLI wrapper which provides a SSH2 Key Agent solution for Bitwarden.
32 lines • 1.63 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.AutostartModule = void 0;
const common_1 = require("@nestjs/common");
const autostart_service_1 = require("./autostart.service");
const cron_service_1 = require("./cron.service");
const systemd_service_1 = require("./systemd.service");
const xinitrc_service_1 = require("./xinitrc.service");
const macos_service_1 = require("./macos.service");
let AutostartModule = class AutostartModule {
};
exports.AutostartModule = AutostartModule;
exports.AutostartModule = AutostartModule = __decorate([
(0, common_1.Global)(),
(0, common_1.Module)({
providers: [
autostart_service_1.AutostartService,
cron_service_1.CronAutostartService,
systemd_service_1.SystemdAutostartService,
xinitrc_service_1.XinitrcAutostartService,
macos_service_1.LaunchAgentAutostartService,
],
exports: [autostart_service_1.AutostartService],
})
], AutostartModule);
//# sourceMappingURL=autostart.module.js.map