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