(registry specs.Registry, path string)
| 9 | ) |
| 10 | |
| 11 | func tokenNeeded(registry specs.Registry, path string) bool { |
| 12 | return registry == specs.RegistryCloudQuery || (registry == specs.RegistryDocker && strings.HasPrefix(path, "docker.cloudquery.io")) |
| 13 | } |
| 14 | |
| 15 | func transformerNeedsToken(transformers []*specs.Transformer) bool { |
| 16 | for _, transformer := range transformers { |
no outgoing calls
no test coverage detected