this might help with the memory issues..??
This commit is contained in:
@ -1,16 +0,0 @@
|
||||
import * as Comlink from "comlink";
|
||||
import { scoresaberService } from "@ssr/common/service/impl/scoresaber";
|
||||
|
||||
export interface WorkerApi {
|
||||
getPlayerExample: typeof getPlayerExample;
|
||||
}
|
||||
|
||||
const workerApi: WorkerApi = {
|
||||
getPlayerExample: getPlayerExample,
|
||||
};
|
||||
|
||||
async function getPlayerExample() {
|
||||
return await scoresaberService.lookupPlayer("76561198449412074");
|
||||
}
|
||||
|
||||
Comlink.expose(workerApi);
|
@ -1,5 +0,0 @@
|
||||
import * as Comlink from "comlink";
|
||||
import { WorkerApi } from "@/common/worker/worker";
|
||||
|
||||
export const scoresaberReloadedWorker = () =>
|
||||
Comlink.wrap<WorkerApi>(new Worker(new URL("./worker.ts", import.meta.url)));
|
Reference in New Issue
Block a user