mirror of
https://github.com/immich-app/immich.git
synced 2026-01-10 04:06:58 -08:00
9 lines
262 B
TypeScript
9 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();
|
|
}
|
|
}
|