mirror of
https://github.com/bitwarden/cli
synced 2025-12-18 09:13:13 +00:00
command structure. debugging
This commit is contained in:
15
src/commands/login.command.ts
Normal file
15
src/commands/login.command.ts
Normal 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) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user