AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 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