BaseController.js 164 B

12345678
  1. class BaseController {
  2. constructor(connPool, config) {
  3. this.connPool = connPool;
  4. this.config = config;
  5. }
  6. }
  7. module.exports = BaseController;