refactor: consolidate backend into modular monolith

This commit is contained in:
2026-07-30 15:37:31 +08:00
parent 30fd159041
commit 7a73dcbd12
55 changed files with 20409 additions and 1728 deletions

View File

@@ -49,15 +49,3 @@ public interface IBackgroundJobService
int limit = 50,
CancellationToken cancellationToken = default);
}
public interface IBackgroundJobDispatcher
{
bool IsEnabled { get; }
Task DispatchAsync(
Guid jobId,
Guid tenantId,
string jobType,
string correlationId,
CancellationToken cancellationToken = default);
}