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.

11 lines
214 B

7 years ago
7 years ago
  1. class MiddlewareList {
  2. description () {
  3. return 'Print available middleware'
  4. }
  5. execute (options) {
  6. const list = require('../default-stack')
  7. console.log(list)
  8. }
  9. }
  10. module.exports = MiddlewareList