mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
7 lines
136 B
TypeScript
7 lines
136 B
TypeScript
|
|
export class CrawlOptionsDto {
|
||
|
|
pathsToCrawl!: string[];
|
||
|
|
recursive = false;
|
||
|
|
includeHidden = false;
|
||
|
|
excludePatterns!: string[];
|
||
|
|
}
|