Skip to content

Instantly share code, notes, and snippets.

View TatTran22's full-sized avatar
🎯
Focusing

Tat Tran TatTran22

🎯
Focusing
View GitHub Profile
@TatTran22
TatTran22 / index.tsx
Created October 10, 2024 14:38 — forked from m5r/index.tsx
bullmq job queue in Remix
import notifierQueue from "~/queues/notifier.server.ts";
export const loader = async () => {
await notifierQueue.add("test", { emailAddress: "[email protected]" });
return null;
};