8 lines
164 B
JavaScript
8 lines
164 B
JavaScript
class BaseController {
|
|
constructor(connPool, config) {
|
|
this.connPool = connPool;
|
|
this.config = config;
|
|
}
|
|
}
|
|
|
|
module.exports = BaseController; |