(hostname string)
| 127 | } |
| 128 | |
| 129 | func (c *cfg) Browser(hostname string) gh.ConfigEntry { |
| 130 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
| 131 | return c.GetOrDefault(hostname, browserKey).Unwrap() |
| 132 | } |
| 133 | |
| 134 | func (c *cfg) ColorLabels(hostname string) gh.ConfigEntry { |
| 135 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
no test coverage detected