| 21 | } |
| 22 | |
| 23 | type TelemetryClientImpl struct { |
| 24 | mutex sync.Mutex |
| 25 | telemetry configuration.TelemetrySetting |
| 26 | records []Record |
| 27 | } |
| 28 | |
| 29 | func NewClient() TelemetryClient { |
| 30 | return &TelemetryClientImpl{telemetry: configuration.TelemetrySettingAll} |
nothing calls this directly
no outgoing calls
no test coverage detected