(hostname string)
| 133 | } |
| 134 | |
| 135 | func (c *cfg) ColorLabels(hostname string) gh.ConfigEntry { |
| 136 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
| 137 | return c.GetOrDefault(hostname, colorLabelsKey).Unwrap() |
| 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) |
no test coverage detected