router.addRoute('GET /users', (ctx, next) => {
  ctx.body = `Route is ${ctx.route.path}`
  return next()
})