(hostname string)
| 148 | } |
| 149 | |
| 150 | func (c *cfg) HTTPUnixSocket(hostname string) gh.ConfigEntry { |
| 151 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
| 152 | return c.GetOrDefault(hostname, httpUnixSocketKey).Unwrap() |
| 153 | } |
| 154 | |
| 155 | func (c *cfg) Pager(hostname string) gh.ConfigEntry { |
| 156 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
no test coverage detected