(hostname string)
| 136 | } |
| 137 | |
| 138 | func (c *cfg) Editor(hostname string) gh.ConfigEntry { |
| 139 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
| 140 | return c.GetOrDefault(hostname, editorKey).Unwrap() |
| 141 | } |
| 142 | |
| 143 | func (c *cfg) GitProtocol(hostname string) gh.ConfigEntry { |
| 144 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
no test coverage detected