@apica-io/url-xi
Version:
URL Check for integrations and API monitoring
13 lines • 401 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TestBase = void 0;
const log4js_1 = require("log4js");
class TestBase {
constructor(debug = false, loggerName = 'app') {
this._debug = false;
this._debug = debug;
this._logger = (0, log4js_1.getLogger)(loggerName);
}
}
exports.TestBase = TestBase;
//# sourceMappingURL=testbase.js.map