@owlnext/heimdall-js-native
Version:
Heimdall API client & utils for react native technologies
15 lines • 521 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ConfigLoader {
constructor() {
this._config = {
PRODUCTION_API_ENTRYPOINT: process.env.API_ENTRYPOINT || 'https://heimdall-api.tools.owlnext.fr',
INTEGRATION_API_ENTRYPOINT: process.env.API_ENTRYPOINT || 'https://heimdall-api.integration.tools.owlnext.fr'
};
}
get config() {
return this._config;
}
}
exports.default = ConfigLoader;
//# sourceMappingURL=config-loader.js.map