(hostname string)
| 164 | } |
| 165 | |
| 166 | func (c *cfg) Prompt(hostname string) gh.ConfigEntry { |
| 167 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
| 168 | return c.GetOrDefault(hostname, promptKey).Unwrap() |
| 169 | } |
| 170 | |
| 171 | func (c *cfg) PreferEditorPrompt(hostname string) gh.ConfigEntry { |
| 172 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
no test coverage detected