| 75 | } |
| 76 | |
| 77 | type serialFetcher struct { |
| 78 | fetchers []Fetcher |
| 79 | } |
| 80 | |
| 81 | func (sf *serialFetcher) Fetch(ctx context.Context, r Ref) (file io.ReadCloser, size uint32, err error) { |
| 82 | for _, fetcher := range sf.fetchers { |
nothing calls this directly
no outgoing calls
no test coverage detected