rename proxychain.ProxyChainPool to proxychain.Pool

This commit is contained in:
Damian Bednarczyk
2023-11-29 15:00:35 -06:00
parent 53ce3ff297
commit 3fdbf3524d

View File

@@ -4,8 +4,8 @@ import (
"net/url" "net/url"
) )
type ProxyChainPool map[url.URL]ProxyChain type Pool map[url.URL]ProxyChain
func NewProxyChainPool() ProxyChainPool { func NewPool() Pool {
return map[url.URL]ProxyChain{} return map[url.URL]ProxyChain{}
} }