10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
import MainQueue from "lib/mq/index.ts";
|
|
|
|
async function configGetLatestVideos() {
|
|
await MainQueue.add("getLatestVideos", {});
|
|
}
|
|
|
|
export async function initMQ() {
|
|
await configGetLatestVideos();
|
|
}
|