(hostname string)
| 166 | } |
| 167 | |
| 168 | func (c *cfg) Spinner(hostname string) gh.ConfigEntry { |
| 169 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
| 170 | return c.GetOrDefault(hostname, spinnerKey).Unwrap() |
| 171 | } |
| 172 | |
| 173 | func (c *cfg) Telemetry() gh.ConfigEntry { |
| 174 | // Intentionally panic if there is no user provided value or default value (which would be a programmer error) |
no test coverage detected