mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
* feat: add nestjs replacement, remove nestjs * fix: format issues * fix: dependency issues * fix: dependency issues * fix: format issue * fix: wrong channel used for logging channel
8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
import { createQueueClient } from "./lib/queue/client";
|
|
import { testQueue } from "./queues/test";
|
|
|
|
export const { client, queueRegistry } = createQueueClient({
|
|
// Add your queues here
|
|
test: testQueue,
|
|
});
|