mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-10 21:03:56 +08:00
16 lines
327 B
TypeScript
16 lines
327 B
TypeScript
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) {
|
|
|
|
}
|
|
}
|