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