Refactored Indexer models

This commit is contained in:
2025-08-31 00:11:05 +02:00
parent 8a3be8dd90
commit 2a75daee07
16 changed files with 591 additions and 591 deletions

View File

@@ -4,10 +4,10 @@ namespace Indexer.Services;
public class IndexerService : IHostedService
{
public WorkerCollection workerCollection;
public WorkerManager workerCollection;
public ILogger<IndexerService> _logger;
public IndexerService(WorkerCollection workerCollection, Client.Client client, ILogger<IndexerService> logger)
public IndexerService(WorkerManager workerCollection, Client.Client client, ILogger<IndexerService> logger)
{
this.workerCollection = workerCollection;
_logger = logger;