(hostname string)
| 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) |
| 125 | return c.GetOrDefault(hostname, accessiblePrompterKey).Unwrap() |
| 126 | } |
| 127 | |
| 128 | func (c *cfg) Browser(hostname string) gh.ConfigEntry { |
| 129 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
no test coverage detected