Publisher rewarding

This commit is contained in:
2025-11-02 11:59:02 +08:00
parent 5e5f4528b9
commit 322dee4453
8 changed files with 312 additions and 50 deletions

View File

@@ -0,0 +1,12 @@
using Quartz;
using DysonNetwork.Sphere.Publisher;
namespace DysonNetwork.Sphere.Publisher;
public class PublisherSettlementJob(PublisherService publisherService) : IJob
{
public async Task Execute(IJobExecutionContext context)
{
await publisherService.SettlePublisherRewards();
}
}