mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-05 11:05:53 +00:00
8 lines
262 B
TypeScript
8 lines
262 B
TypeScript
import { BaseCommand } from './base-command';
|
|
|
|
export class LogoutCommand extends BaseCommand {
|
|
public static readonly description = 'Logout and remove persisted credentials';
|
|
public async run(): Promise<void> {
|
|
await this.sessionService.logout();
|
|
}
|
|
}
|