nodePong/server/npg_server_config.js

24 lines
241 B
JavaScript
Raw Normal View History

2016-02-13 14:49:19 +01:00
/**
* @file npg_server_config.js
* @author frtk
*/
var Config = {
2016-02-14 00:23:22 +01:00
VERSION : '0.1.2',
2016-02-13 14:49:19 +01:00
HTTP: {
host: '127.0.0.1',
port: 8042
},
}
/**
*
* EXPORTS
*
*/
if (typeof exports !== "undefined") {
exports.Config = Config;
}