(hostname string)
| 116 | } |
| 117 | |
| 118 | func (c *cfg) AccessibleColors(hostname string) gh.ConfigEntry { |
| 119 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
| 120 | return c.GetOrDefault(hostname, accessibleColorsKey).Unwrap() |
| 121 | } |
| 122 | |
| 123 | func (c *cfg) AccessiblePrompter(hostname string) gh.ConfigEntry { |
| 124 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
no test coverage detected