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