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