forked from pinks/eris
1
0
Fork 0
eris/tasks/mod.ts

9 lines
222 B
TypeScript

import { handleGenerationUpdates, restartGenerationWorkers } from "./generationQueue.ts";
export async function runAllTasks() {
await Promise.all([
restartGenerationWorkers(),
handleGenerationUpdates(),
]);
}