Fixed naming issue
This commit is contained in:
@@ -1,8 +0,0 @@
|
|||||||
|
|
||||||
class liquidFlowHandler {
|
|
||||||
constructor(config) {
|
|
||||||
this.config = config;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = { liquidFlowHandler };
|
|
||||||
13
src/specificClass.js
Normal file
13
src/specificClass.js
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
const { childRegistrationUtils, logger } = require('generalFunctions');
|
||||||
|
|
||||||
|
|
||||||
|
class liquidFlowHandler {
|
||||||
|
constructor(config) {
|
||||||
|
this.config = config;
|
||||||
|
|
||||||
|
this.logger = new logger(this.config.general.logging.enabled, this.config.general.logging.logLevel, config.general.name);
|
||||||
|
this.childRegistrationUtils = new childRegistrationUtils(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { liquidFlowHandler };
|
||||||
Reference in New Issue
Block a user