1
0
mirror of https://github.com/bitwarden/cli synced 2025-12-17 08:43:21 +00:00

prelogin kdf info

This commit is contained in:
Kyle Spearrin
2018-08-14 15:13:40 -04:00
parent e11b749f6f
commit acd562e18c
5 changed files with 10 additions and 18 deletions

View File

@@ -383,8 +383,7 @@ export class Program {
})
.action(async (format, filepath, password, cmd) => {
await this.exitIfLocked();
const command = new ImportCommand(this.main.cryptoService,
this.main.userService, this.main.importService);
const command = new ImportCommand(this.main.cryptoService, this.main.importService);
const response = await command.run(format, filepath, password, cmd);
this.processResponse(response);
});
@@ -404,8 +403,7 @@ export class Program {
})
.action(async (password, cmd) => {
await this.exitIfLocked();
const command = new ExportCommand(this.main.cryptoService, this.main.userService,
this.main.exportService);
const command = new ExportCommand(this.main.cryptoService, this.main.exportService);
const response = await command.run(password, cmd);
this.processResponse(response);
});