UNPKG

generator-wechat-bot

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