scrapingService :: hasRepository()

This commit is contained in:
albert
2025-07-29 01:00:40 +02:00
parent 247189661e
commit 987b0aed3e
2 changed files with 9 additions and 0 deletions

View File

@ -6,4 +6,8 @@ export class ScrapingService {
getServiceName(): string {
return 'ScrapingService';
}
hasRepository(): boolean {
return this.feedRepository !== null && this.feedRepository !== undefined;
}
}