This commit is contained in:
Jonathan Jogenfors 2023-11-09 14:44:24 +01:00
parent 06d78d2dac
commit db28694f68
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
import { BaseCommand } from '../../cli/base-command';
import { BaseCommand } from 'src/cli/base-command';
export default class LoginKey extends BaseCommand {
public async run(instanceUrl: string, apiKey: string): Promise<void> {

View file

@ -1,4 +1,4 @@
import { BaseCommand } from '../cli/base-command';
import { BaseCommand } from 'src/cli/base-command';
export default class Logout extends BaseCommand {
public static readonly description = 'Logout and remove persisted credentials';

View file

@ -1,4 +1,4 @@
import { BaseCommand } from '../cli/base-command';
import { BaseCommand } from 'src/cli/base-command';
import { CrawledAsset } from '../cores/models/crawled-asset';
import { CrawlService, UploadService } from '../services';
import * as si from 'systeminformation';

View file

@ -28,7 +28,7 @@ program
program
.command('import')
.description('Import existing assets')
.description('Import existing assets (Deprecated in favor of external libraries)')
.usage('[options] [paths...]')
.addOption(new Option('-r, --recursive', 'Recursive').env('IMMICH_RECURSIVE').default(false))
.addOption(