Filter defines a generic filter interface to apply to responses
| 7 | |
| 8 | // Filter defines a generic filter interface to apply to responses |
| 9 | type Filter interface { |
| 10 | Filter(response *Response) (bool, error) |
| 11 | } |
| 12 | |
| 13 | // FilterString defines a filter of type string |
| 14 | type FilterString struct { |
no outgoing calls
no test coverage detected