| 15 | ) |
| 16 | |
| 17 | type TelemetryClient interface { |
| 18 | Enqueue(event string, properties map[string]any) |
| 19 | Publish(ctx context.Context) (int, error) |
| 20 | UpdateTelemetrySetting(value string) |
| 21 | } |
| 22 | |
| 23 | type TelemetryClientImpl struct { |
| 24 | mutex sync.Mutex |
no outgoing calls
no test coverage detected