combinedFinder is a Finder that combines multiple finders.
| 29 | |
| 30 | // combinedFinder is a Finder that combines multiple finders. |
| 31 | type combinedFinder struct { |
| 32 | finders []Finder |
| 33 | } |
| 34 | |
| 35 | // Find implements the [Finder] interface. |
| 36 | func (c *combinedFinder) Find(fsys afero.Fs) ([]string, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected