package client import "net/http" func New() *http.Client { return &http.Client{ Transport: &HTransport{ T: http.DefaultTransport, }, } }