| 100 | } |
| 101 | |
| 102 | type CompositePathMatcher struct { |
| 103 | Matchers []PathMatcher |
| 104 | } |
| 105 | |
| 106 | func NewCompositeMatcher(matchers ...PathMatcher) PathMatcher { |
| 107 | if len(matchers) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected