mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:21:10 +02:00
Move queue name constants to separate file (queue-names.ts) to avoid circular dependency between queue.module.ts and processor files. The @Processor decorator evaluates at module load time, and importing constants from queue.module.ts created a circular dependency that resulted in undefined queue names. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
5 lines
221 B
TypeScript
5 lines
221 B
TypeScript
// Queue names - separate file to avoid circular imports with processors
|
|
export const EMAIL_QUEUE = 'email';
|
|
export const PUSH_QUEUE = 'push';
|
|
export const MATRIX_QUEUE = 'matrix';
|
|
export const WEBHOOK_QUEUE = 'webhook';
|