Ali Nehzat

Results 1 comments of Ali Nehzat

If anyone else needs to do this: ``` type Transport struct { T http.RoundTripper } func (t *Transport) RoundTrip(req *http.Request) (*http.Response, error) { req.Header.Add("Accept", "application/vnd.github.hawkgirl-preview+json") return t.T.RoundTrip(req) } func NewTransport(T...