1
0
mirror of https://github.com/bitwarden/cli synced 2025-12-18 09:13:13 +00:00

command structure. debugging

This commit is contained in:
Kyle Spearrin
2018-05-12 15:12:28 -04:00
parent 4a0fa7945a
commit bb54e2a381
6 changed files with 135 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
import * as program from 'commander';
import { AuthResult } from 'jslib/models/domain/authResult';
import { AuthService } from 'jslib/abstractions/auth.service';
export class LoginCommand {
constructor(private authService: AuthService) {
}
run(email: string, password: string, cmd: program.Command) {
}
}