2025-08-21 15:24:40 +09:00
|
|
|
import { Processor, WorkerHost } from "@nestjs/bullmq";
|
|
|
|
|
import { Job } from "bullmq";
|
2025-08-20 18:02:50 +09:00
|
|
|
|
2025-08-21 15:24:40 +09:00
|
|
|
@Processor("reconcile")
|
2025-08-20 18:02:50 +09:00
|
|
|
export class ReconcileProcessor extends WorkerHost {
|
2025-08-22 17:02:49 +09:00
|
|
|
async process(_job: Job) {
|
2025-08-20 18:02:50 +09:00
|
|
|
// TODO: Implement reconciliation logic
|
2025-08-22 17:02:49 +09:00
|
|
|
// Note: In production, this should use proper logging
|
2025-08-20 18:02:50 +09:00
|
|
|
}
|
|
|
|
|
}
|