(hostname string)
| 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) |
| 126 | return c.GetOrDefault(hostname, accessiblePrompterKey).Unwrap() |
| 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) |
no test coverage detected