index.js 244 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 const Router = require("koa-router"); const notify = new Router(); const slackCtrl = require("./slack.ctrl"); notify.post("/slack/goal", slackCtrl.slackGoal); notify.post("/slack/recommend", slackCtrl.slackRecommend); module.exports = notify;