EpFF stands for existing path, first found Given the order of the candidates, act on the first one found where the relative path exists.
| 15 | // EpFF stands for existing path, first found |
| 16 | // Given the order of the candidates, act on the first one found where the relative path exists. |
| 17 | type EpFF struct{} |
| 18 | |
| 19 | func (p *EpFF) epff(ctx context.Context, upstreams []*upstream.Fs, filePath string) (*upstream.Fs, error) { |
| 20 | ch := make(chan *upstream.Fs, len(upstreams)) |
nothing calls this directly
no outgoing calls
no test coverage detected