| 40 | var _ ConfigRead = &goGitConfigReader{} |
| 41 | |
| 42 | type goGitConfigReader struct { |
| 43 | getConfig func() (*config.Config, error) |
| 44 | } |
| 45 | |
| 46 | func (cr *goGitConfigReader) ReadAll(keyPrefix string) (map[string]string, error) { |
| 47 | cfg, err := cr.getConfig() |
nothing calls this directly
no outgoing calls
no test coverage detected