UNPKG

generator-wechat-bot

Version:
14 lines (13 loc) 286 B
module.exports = function <%= moduleVarName %>() { return function <%= moduleVarName %>(req, res, next) { var message = req.weixin; if (message) { return res.reply({ type: 'text', content: 'hello' }); } else { return next(); } } };