Added worker app.
All checks were successful
ci / build-test (push) Successful in 2m16s
ci / publish-image (push) Has been skipped

This commit is contained in:
2026-02-01 21:41:23 -05:00
parent c51775592e
commit 340c62d18b
12 changed files with 309 additions and 25 deletions

View File

@@ -0,0 +1,7 @@
namespace JSMR.Worker.Services;
public interface ICheckpointStore
{
Task<int?> GetLastPageAsync(string locale, CancellationToken cancellationToken);
Task SaveLastPageAsync(string locale, int page, CancellationToken cancellationToken);
}