using DysonNetwork.Insight.Thought; using Quartz; namespace DysonNetwork.Insight.Startup; public class TokenBillingJob(ThoughtService thoughtService, ILogger logger) : IJob { public async Task Execute(IJobExecutionContext context) { await thoughtService.SettleThoughtBills(logger); } }