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