You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
190 B

9 years ago
  1. 'use strict'
  2. class TestMiddleware {
  3. middleware (option) {
  4. return function (ctx, next) {
  5. ctx.body = '1234512345'
  6. return next()
  7. }
  8. }
  9. }
  10. module.exports = TestMiddleware