( ctx context.Context, registryDao store.RegistryRepository, f func(registry registrytypes.Registry, a pkg.Artifact) response.Response, info pkg.PackageArtifactInfo, )
| 50 | } |
| 51 | |
| 52 | func ProxyWrapper( |
| 53 | ctx context.Context, |
| 54 | registryDao store.RegistryRepository, |
| 55 | f func(registry registrytypes.Registry, a pkg.Artifact) response.Response, |
| 56 | info pkg.PackageArtifactInfo, |
| 57 | ) (response.Response, error) { |
| 58 | return proxyInternal(ctx, registryDao, f, info, true) |
| 59 | } |
| 60 | |
| 61 | func proxyInternal( |
| 62 | ctx context.Context, |
no test coverage detected
searching dependent graphs…