Refactor backend

This commit is contained in:
Dunemask 2022-07-12 21:26:36 +00:00
parent fd497c0e23
commit 7027feb8ac
20 changed files with 75 additions and 369 deletions

View file

@ -1,4 +1,4 @@
import TestResultsWorker from "./TestResultsWorker.js";
const getWorkers = (skio) => [new TestResultsWorker(skio)];
export default getWorkers;
const buildWorkers = (skio) => [new TestResultsWorker(skio)];
export default buildWorkers;