UNPKG

nexi

Version:
12 lines (8 loc) 175 B
const bindAll = require('class-bindall') class BaseController { constructor(context) { this.context = context bindAll(this) } } module.exports = BaseController