const logger = require('../utils/logger'); function handleEvent(body, res) { // 示例自动回复 if (body.t === 'AT_MESSAGE_CREATE') { const content = body.d?.content || ''; return res.json({ code: 0, data: { content: `你说的是:“${content}”?🤔` } }); } // 其它事件默认ACK res.json({ code: 0 }); } module.exports = { handleEvent };