UNPKG

recurlybot

Version:

Slack bot to notify new Recurly subscriptions

9 lines (6 loc) 203 B
module.exports = (recurly) => { const that = {}; that.getSubscription = id => recurly.subscriptions.get(id); that.getNotes = accountCode => recurly.accounts.notes(accountCode); return that; };