gamerocket
Version:
Gamerocket NodeJS Client Library
25 lines (14 loc) • 577 B
JavaScript
(function() {
var Config, Environment, GameRocketGateway, connect, errorTypes;
Config = require('./gamerocket/config').Config;
Environment = require("./gamerocket/environment").Environment;
GameRocketGateway = require("./gamerocket/gamerocket_gateway").GameRocketGateway;
errorTypes = require("./gamerocket/error_types");
connect = function(config) {
return new GameRocketGateway(new Config(config));
};
exports.connect = connect;
exports.version = '1.0.4';
exports.Environment = Environment;
exports.errorTypes = errorTypes;
}).call(this);