FilterString defines a filter of type string
| 12 | |
| 13 | // FilterString defines a filter of type string |
| 14 | type FilterString struct { |
| 15 | Keywords []string |
| 16 | } |
| 17 | |
| 18 | // Filter a response with strings filtering |
| 19 | func (f FilterString) Filter(response *Response) (bool, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected