Files
open-im-server/internal/push/sdk/tpns-server-sdk-go/go/client/client.go
T

19 lines
298 B
Go
Raw Normal View History

2021-05-26 19:22:11 +08:00
package client
import (
"net/http"
"time"
)
func New() *http.Client {
return &http.Client{
Transport: &http.Transport{
MaxIdleConns: 100,
MaxIdleConnsPerHost: 100,
IdleConnTimeout: 30 * time.Second,
DisableCompression: false,
DisableKeepAlives: false,
},
}
}