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