UNPKG

inspirobot-slack

Version:
16 lines (12 loc) 342 B
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 };