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