这 BUG 太明显了,你的协程可能并没有执行完,你的主协程就退出了。
还有这一坨代码为啥在每个协程的 for 中执行?
```
if proxyCount > 0 { // If proxy available
proxyURL := getProxyFromList(proxyList, proxyIndex)
transport := &http.Transport{
Proxy: http.ProxyURL(proxyURL),
}
client.Transport = transport
proxyIndex = (proxyIndex + 1) % proxyCount // Incrementing indexes and fetching modes to implement round-robin use of proxies
} else {
client.Transport = nil // No proxy, direct
}
```