Files
scheduler/LiteCharmsScheduler/Workers/JobWorker.cs
T
Khwezi Mngoma 3d506cffd1
continuous-integration/drone/pr Build is passing
Stable run
2026-06-02 00:29:02 +02:00

11 lines
397 B
C#

using LiteCharms.Features.Quartz.Abstractions;
namespace LiteCharmsScheduler.Workers
{
public class JobWorker(IJobOrchestrator jobOrchestrator, ILogger<JobWorker> logger, IConfiguration configuration) : BackgroundService
{
protected override async Task ExecuteAsync(CancellationToken stoppingToken) =>
logger.LogInformation("Midrand Books jobs initialized");
}
}