Commit 95b5345c authored by nanahira's avatar nanahira

allow single server

parent 2e12cb23
......@@ -19,6 +19,10 @@ async function main() {
});
}
await fetcher.initProxies();
if (process.env.SERVER) {
await runServer(process.env.SERVER);
return;
}
const userListWithServer = await Promise.all(servers.map(runServer));
const allServersList: any = {};
for (let i = 0; i < servers.length;++i) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment