cleanup
This commit is contained in:
parent
06d78d2dac
commit
db28694f68
4 changed files with 4 additions and 4 deletions
|
@ -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> {
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue