UNPKG

flysh

Version:

DOM Document Object Artifact Collector

38 lines 898 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Base = void 0; const ClassLoader_1 = require("./helpers/ClassLoader"); const SimpleClassLoader_1 = require("./helpers/SimpleClassLoader"); /** * 'Base' class definition */ class Base { /** * Initialization */ init() { this.classLoader = new ClassLoader_1.ClassLoader(); this.simpleCL = new SimpleClassLoader_1.SimpleClassLoader(); //this.creader = new ConfigReader(); //this.logger = new Log4TS(); //this.logger.log.info("initialization..."); } /** * Launch */ launch() { this.classLoader.run(); this.simpleCL.run(); //this.logger.log.info("launching..."); } /** * Run */ run() { this.init(); this.launch(); } } exports.Base = Base; ; //# sourceMappingURL=Base.js.map