mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-27 22:52:36 +00:00
14 lines
276 B
JavaScript
14 lines
276 B
JavaScript
"use strict";
|
|
|
|
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 () {
|
|
|
|
}
|
|
|
|
Server.list = serverList;
|
|
|
|
module.exports = Server;
|