mirror of
https://github.com/immich-app/immich.git
synced 2025-06-04 14:14:23 -04: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);
|
|
}
|
|
}
|