@villedemontreal/http-request
Version:
HTTP utilities - send HTTP requests with proper headers, etc.
15 lines • 418 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.configs = void 0;
const path = require("path");
/**
* Configurations for the application.
*/
class Configs {
constructor() {
this.root = path.normalize(path.join(__dirname, '..'));
this.dataDirPath = path.join(this.root, 'test-data');
}
}
exports.configs = new Configs();
//# sourceMappingURL=configs.js.map