mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
8 lines
232 B
TypeScript
8 lines
232 B
TypeScript
import { BaseCommand } from './base-command';
|
|
|
|
export class LoginCommand extends BaseCommand {
|
|
public async run(instanceUrl: string, apiKey: string): Promise<void> {
|
|
await this.sessionService.login(instanceUrl, apiKey);
|
|
}
|
|
}
|