guanghulab/dingtalk-bot/syslog-receiver.js
2026-05-10 13:12:44 +08:00

10 lines
196 B
JavaScript

// syslog-receiver.js
// Phase 1 - SYSLOG接收器
function receive(data) {
console.log('[SYSLOG] 收到数据:', data);
return { status: 'received', data };
}
module.exports = { receive };