返回 DeepSeek-Reasonix
profileAnalysisWorker.ts
根目录 / desktop / electron / src / main / profileAnalysisWorker.ts
1 import { parentPort, workerData } from "node:worker_threads";
2 import { analyseProfile } from "./profileAnalysis.js";
3
4 parentPort?.postMessage(analyseProfile(workerData));
5
5 lines TYPESCRIPT