Skip to content

Instantly share code, notes, and snippets.

@Piterden
Created December 17, 2017 03:56
Show Gist options
  • Save Piterden/1f5d2f49ee5c577e614cf29817ddf02a to your computer and use it in GitHub Desktop.
Save Piterden/1f5d2f49ee5c577e614cf29817ddf02a to your computer and use it in GitHub Desktop.
Middleware.js
'use scrict'
class Middleware {
// optional
constructor () {
}
// required
handle (ctx, next) {
return next(ctx)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment