HeaderSuffixMatcher matches on whether the suffix of the header value matches the suffix passed into this struct.
| 187 | // HeaderSuffixMatcher matches on whether the suffix of the header value matches |
| 188 | // the suffix passed into this struct. |
| 189 | type HeaderSuffixMatcher struct { |
| 190 | key string |
| 191 | suffix string |
| 192 | invert bool |
| 193 | } |
| 194 | |
| 195 | // NewHeaderSuffixMatcher returns a new HeaderSuffixMatcher. |
| 196 | func NewHeaderSuffixMatcher(key string, suffix string, invert bool) *HeaderSuffixMatcher { |
nothing calls this directly
no outgoing calls
no test coverage detected