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