nodePong/server/server_config.js

24 lines
237 B
JavaScript

/**
* @file server_config.js
* @author frtk
*/
var Config = {
VERSION : '0.0.6',
HTTP: {
host: '127.0.0.1',
port: 8042
},
}
/**
*
* EXPORTS
*
*/
if (typeof exports !== "undefined") {
exports.Config = Config;
}