HeaderValue is used to encode values to an HTTP header
| 31 | |
| 32 | // HeaderValue is used to encode values to an HTTP header |
| 33 | type HeaderValue struct { |
| 34 | header http.Header |
| 35 | key string |
| 36 | append bool |
| 37 | } |
| 38 | |
| 39 | func newHeaderValue(header http.Header, key string, append bool) HeaderValue { |
| 40 | return HeaderValue{header: header, key: strings.TrimSpace(key), append: append} |
nothing calls this directly
no outgoing calls
no test coverage detected