(hostname string)
| 156 | } |
| 157 | |
| 158 | func (c *cfg) Prompt(hostname string) gh.ConfigEntry { |
| 159 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
| 160 | return c.GetOrDefault(hostname, promptKey).Unwrap() |
| 161 | } |
| 162 | |
| 163 | func (c *cfg) PreferEditorPrompt(hostname string) gh.ConfigEntry { |
| 164 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
no test coverage detected