Midday / apps /worker /src /queues /notifications.ts
Jules
Final deployment with all fixes and verified content
c09f67c
import { Queue } from "bullmq";
import { notificationsQueueConfig } from "./notifications.config";
/**
* Notifications queue instance
* Unified queue for all notification types
* Configuration is defined in notifications.config.ts
*/
export const notificationsQueue = new Queue(
"notifications",
notificationsQueueConfig.queueOptions,
);