module.exports = catsRouter.get('/cats', function (ctx, next) {
  ctx.body = `List your cute cats! ${ctx.route.path}`
  return next()
})
.get('/cats/new', (ctx, next) => {