resp := &http.Response{
StatusCode: 200,
ProtoMajor: 1,
ProtoMinor: 1,
Header: http.Header{"Content-Type": []string{"text/plain"}},
Body: ioutil.NopCloser(strings.NewReader("Hello, World!")),
}
resp := &http.Response{
StatusCode: 200,
ProtoMajor: 1,
ProtoMinor: 1,
Header: http.Header{"Content-Type": []string{"text/plain"}},
Body: ioutil.NopCloser(strings.NewReader("Hello, World!")),
}