common/pkg/proxy/proxy_test.go

16 lines
370 B
Go
Raw Normal View History

2024-12-06 17:07:14 +08:00
package proxy
import "testing"
func TestNewProxyPool(t *testing.T) {
NewProxyPool(&Option{
Subscribes: []string{
"https://us.timerzz.com:26106/vmess/sub",
"https://us.timerzz.com:26106/trojan/sub",
"https://us.timerzz.com:26106/ssr/sub",
"https://us.timerzz.com:26106/ss/sub",
},
Clash: []string{"https://us.timerzz.com:26106/clash/proxies"},
})
}