feat(worker): WeekReportService orchestrates generate + store
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace ClaudeDo.Worker.Report.Interfaces;
|
||||
|
||||
public interface IWeekReportService
|
||||
{
|
||||
Task<string?> GetStoredAsync(DateOnly start, DateOnly end, CancellationToken ct = default);
|
||||
Task<string> GenerateAsync(DateOnly start, DateOnly end, CancellationToken ct = default);
|
||||
}
|
||||
Reference in New Issue
Block a user