From bb37354fb0af797e4f27a8e6c560e3717ba0171a Mon Sep 17 00:00:00 2001 From: "p.vanderwilt" Date: Wed, 23 Jul 2025 14:54:07 +0200 Subject: [PATCH] Fixed naming issue --- src/SpecificClass.js | 8 -------- src/specificClass.js | 13 +++++++++++++ 2 files changed, 13 insertions(+), 8 deletions(-) delete mode 100644 src/SpecificClass.js create mode 100644 src/specificClass.js 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