UNPKG

recurlybot

Version:

Slack bot to notify new Recurly subscriptions

11 lines (8 loc) 223 B
module.exports = (incomingWebhook) => { const that = {}; that.send = (channel, msg, cb) => { const finalMsg = Object.assign({ channel }, msg); return incomingWebhook.send(finalMsg, cb); }; return that; };