feat(worker): add Prime scheduler abstractions + runner

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Mika Kuns
2026-04-28 08:57:02 +02:00
parent 4e90828653
commit f383645360
7 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace ClaudeDo.Worker.Prime;
public interface IPrimeRunner
{
Task<PrimeRunOutcome> FireAsync(PrimeScheduleDto schedule, CancellationToken ct);
}
public sealed record PrimeRunOutcome(bool Success, string Message);