router
  .get('/users', (ctx, next) => {
    ctx.body = `List awesome users! ${ctx.route.path}`
    return next()
  })