7 lines
204 B
TypeScript
7 lines
204 B
TypeScript
import type { Job } from "bullmq";
|
|
import { queueLatestVideos } from "mq/task/queueLatestVideo";
|
|
|
|
export const getLatestVideosWorker = async (_job: Job): Promise<void> => {
|
|
await queueLatestVideos();
|
|
};
|