ensl_gathers/lib/gather/server.js

15 lines
276 B
JavaScript
Raw Normal View History

"use strict";
2015-07-29 13:50:39 +00:00
var fs = require("fs");
var path = require("path");
var source = JSON.parse(fs.readFileSync(path.join(__dirname, "../../config/data/servers.json")));
var serverList = source.servers;
function Server () {
}
2015-07-29 13:50:39 +00:00
Server.list = serverList;
module.exports = Server;