File tree Expand file tree Collapse file tree 1 file changed +2
-19
lines changed Expand file tree Collapse file tree 1 file changed +2
-19
lines changed Original file line number Diff line number Diff line change @@ -250,25 +250,8 @@ type Request struct {
250
250
vars map [string ]interface {}
251
251
files []file
252
252
253
- // Header mirrors the Header of a http.Request. It contains
254
- // the request header fields either received
255
- // by the server or to be sent by the client.
256
- //
257
- // If a server received a request with header lines,
258
- //
259
- // Host: example.com
260
- // accept-encoding: gzip, deflate
261
- // Accept-Language: en-us
262
- // fOO: Bar
263
- // foo: two
264
- //
265
- // then
266
- //
267
- // Header = map[string][]string{
268
- // "Accept-Encoding": {"gzip, deflate"},
269
- // "Accept-Language": {"en-us"},
270
- // "Foo": {"Bar", "two"},
271
- // }
253
+ // Header represent any request headers that will be set
254
+ // when the request is made.
272
255
Header http.Header
273
256
}
274
257
You can’t perform that action at this time.
0 commit comments