8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
import { Job } from "bullmq";
|
|
import { collectSongs } from "mq/task/collectSongs";
|
|
|
|
export const collectSongsWorker = async (_job: Job): Promise<void> => {
|
|
await collectSongs();
|
|
return;
|
|
};
|