Files
proxypool/provider/clash_test.go
2020-08-11 19:42:36 +08:00

19 lines
288 B
Go

package provider
import (
"fmt"
"testing"
"github.com/zu1k/proxypool/getter"
)
func TestClash_Provide(t *testing.T) {
a := getter.NewTGSsrlistGetter(200).Get()
clash := Clash{Proxies: a}
fmt.Println(clash.Provide())
//data, _ := yaml.Marshal(a)
//fmt.Println(string(data))
}