UNPKG

recurlybot

Version:

Slack bot to notify new Recurly subscriptions

8 lines (5 loc) 267 B
const { IncomingWebhook } = require('@slack/webhook'); const createSlackClient = require('./slack'); const { webhookUrl } = require('../../config').slack; const incomingWebhook = new IncomingWebhook(webhookUrl); module.exports = createSlackClient(incomingWebhook);