AnyMatcher is a PathMatcher to match any path
| 66 | |
| 67 | // AnyMatcher is a PathMatcher to match any path |
| 68 | type AnyMatcher struct{} |
| 69 | |
| 70 | func (AnyMatcher) Matches(f string) (bool, error) { return true, nil } |
| 71 | func (AnyMatcher) MatchesEntireDir(f string) (bool, error) { return true, nil } |
nothing calls this directly
no outgoing calls
no test coverage detected