bitwarden-estensione-browser/src/commands/sync.command.ts

17 lines
405 B
TypeScript
Raw Normal View History

2018-05-14 17:15:54 +02:00
import * as program from 'commander';
import { SyncService } from 'jslib/abstractions/sync.service';
export class SyncCommand {
2018-05-14 19:37:52 +02:00
constructor(private syncService: SyncService) { }
2018-05-14 17:15:54 +02:00
async run(cmd: program.Command) {
try {
const result = await this.syncService.fullSync(false);
console.log(result);
} catch (e) {
console.log(e);
}
}
}