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