码桶
发现社区成员的开源项目
worker.js448 B
/**
* Worker CLI 入口 — 持续轮询消息
* 用法: node worker.js [--debug]
*
* 也可通过 HTTP 触发: GET /worker?key=ngwebot2026
*/
const { runCLI } = require('./services/worker');
const debug = process.argv.includes('--debug');
console.log('iLink Worker 启动中...');
console.log('按 Ctrl+C 停止');
runCLI(debug).catch(err => {
console.error('Worker 致命错误:', err.message);
process.exit(1);
});