inspirobot-slack
Version:
Inspirobot Slack integration
16 lines (12 loc) • 342 B
JavaScript
const { home, notFound, quote } = require('./controllers');
const routingTable = {
'/': {
GET: home.get,
},
'/quote': {
GET: quote.get,
POST: quote.post,
},
};
const route = ({ method, url }) => (routingTable[url] && routingTable[url][method]) || notFound;
module.exports = { route, routingTable };