Configger is an abstraction for a thing that can read gitconfig.
| 12 | |
| 13 | // Configger is an abstraction for a thing that can read gitconfig. |
| 14 | type Configger interface { |
| 15 | GetConfig(prefix string) (*git.Config, error) |
| 16 | } |
| 17 | |
| 18 | // RefGroupBuilder handles reference-related options and puts together |
| 19 | // a `sizes.RefGrouper` to be used by the main part of the program. |