package httpclient import ( "time" "resty.dev/v3" ) var Default *resty.Client func Init() { c := resty.New() // TODO: 将代理配置移到config中 // c.SetProxy("http://127.0.0.1:9000") c.SetTimeout(10 * time.Second) Default = c }