Midday / apps /worker /src /queues /insights.ts
Jules
Final deployment with all fixes and verified content
c09f67c
import { Queue } from "bullmq";
import { insightsQueueConfig } from "./insights.config";
/**
* Insights queue instance
* Used for enqueueing insight generation jobs
* Configuration is defined in insights.config.ts
*/
export const insightsQueue = new Queue(
"insights",
insightsQueueConfig.queueOptions,
);