| 12 | ) |
| 13 | |
| 14 | type GitFetcher struct { |
| 15 | vmu sync.RWMutex |
| 16 | vals map[string][]string |
| 17 | } |
| 18 | |
| 19 | func readGitConfig(configs ...*git.ConfigurationSource) (gf *GitFetcher, extensions map[string]Extension, uniqRemotes map[string]bool) { |
| 20 | vals := make(map[string][]string) |
nothing calls this directly
no outgoing calls
no test coverage detected