(payload: TwoWaySyncType)
| 80 | } |
| 81 | |
| 82 | export async function createTwoWaySyncJob(payload: TwoWaySyncType) { |
| 83 | const worker = await WorkerSingleton.getInstance(); |
| 84 | return await worker.addJob('two-way-sync', payload, { |
| 85 | maxAttempts: 1, |
| 86 | }); |
| 87 | } |
| 88 | |
| 89 | export async function createIntegrationDiscord() { |
| 90 | const worker = await WorkerSingleton.getInstance(); |
no test coverage detected