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