(hostname string)
| 159 | } |
| 160 | |
| 161 | func (c *cfg) Pager(hostname string) gh.ConfigEntry { |
| 162 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
| 163 | return c.GetOrDefault(hostname, pagerKey).Unwrap() |
| 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) |
no test coverage detected