UNPKG

525 BJavaScriptView Raw
1var authServers, registrationServers, servers;
2
3servers = ["wss://east.glgresearch.com/awesome-auth/", "wss://west.glgresearch.com/awesome-auth/", "wss://europe.glgresearch.com/awesome-auth/", "wss://asia.glgresearch.com/awesome-auth/"];
4
5authServers = [];
6
7registrationServers = [];
8
9servers.forEach(function(server) {
10 authServers.push("" + server + "auth");
11 return registrationServers.push("" + server + "registration");
12});
13
14module.exports = {
15 authServers: authServers,
16 registrationServers: registrationServers
17};