using Quartz; namespace DysonNetwork.Zone.Startup; public static class ScheduledJobsConfiguration { public static IServiceCollection AddAppScheduledJobs(this IServiceCollection services) { services.AddQuartz(q => { }); services.AddQuartzHostedService(q => q.WaitForJobsToComplete = true); return services; } }