591}
592
593func transport(insecure bool, caCertPool *x509.CertPool, clientCertificate []tls.Certificate) http.RoundTripper {
594 var transport http.RoundTripper595
596 transport = &http.Transport{
597 TLSClientConfig: &tls.Config{
Variable declaration and assignment can be merged, simplifying the code.
var x int
x = 1
var x int = 1
or
x := 1