(hostname string)
| 123 | } |
| 124 | |
| 125 | func (c *cfg) AccessiblePrompter(hostname string) gh.ConfigEntry { |
| 126 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
| 127 | return c.GetOrDefault(hostname, accessiblePrompterKey).Unwrap() |
| 128 | } |
| 129 | |
| 130 | func (c *cfg) Browser(hostname string) gh.ConfigEntry { |
| 131 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
no test coverage detected