diff --git a/src/SpecificClass.js b/src/SpecificClass.js deleted file mode 100644 index 803dcc5..0000000 --- a/src/SpecificClass.js +++ /dev/null @@ -1,8 +0,0 @@ - -class liquidFlowHandler { - constructor(config) { - this.config = config; - } -} - -module.exports = { liquidFlowHandler }; \ No newline at end of file diff --git a/src/specificClass.js b/src/specificClass.js new file mode 100644 index 0000000..d1e0a28 --- /dev/null +++ b/src/specificClass.js @@ -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 }; \ No newline at end of file