gamerocket
Version:
Gamerocket NodeJS Client Library
19 lines (13 loc) • 325 B
JavaScript
(function() {
var Config;
Config = (function() {
function Config(rawConfig) {
this.apiVersion = "1";
this.environment = rawConfig.environment;
this.apiKey = rawConfig.apiKey;
this.secretKey = rawConfig.secretKey;
}
return Config;
})();
exports.Config = Config;
}).call(this);