UNPKG

flysh

Version:

DOM Document Object Artifact Collector

34 lines 744 B
import { ClassLoader } from "./helpers/ClassLoader"; import { SimpleClassLoader } from "./helpers/SimpleClassLoader"; /** * 'Base' class definition */ export class Base { /** * Initialization */ init() { this.classLoader = new ClassLoader(); this.simpleCL = new 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(); } } ; //# sourceMappingURL=Base.js.map