Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. import Queue from "bull";
  2. export const TEST_QUEUE = "TEST_QUEUE";
  3. export const queues = {
  4. [TEST_QUEUE]: new Queue(TEST_QUEUE, "0.0.0.0")
  5. };
  6.  
  7. queues.TEST_QUEUE.add({ key: "testJob" });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement