Fixed naming issue

This commit is contained in:
2025-07-23 14:54:07 +02:00
parent f70fa15ef5
commit bb37354fb0
2 changed files with 13 additions and 8 deletions

View File

@@ -1,8 +0,0 @@
class liquidFlowHandler {
constructor(config) {
this.config = config;
}
}
module.exports = { liquidFlowHandler };

13
src/specificClass.js Normal file
View 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 };