(key string)
| 17 | } |
| 18 | |
| 19 | func newErrMultipleConfigEntry(key string) error { |
| 20 | return fmt.Errorf("%w: duplicated key %s", ErrMultipleConfigEntry, key) |
| 21 | } |
| 22 | |
| 23 | // Config represent the common function interacting with the repository config storage |
| 24 | type Config interface { |