| 721 | } |
| 722 | |
| 723 | type BasicTelemetryController struct { |
| 724 | logger slog.Logger |
| 725 | |
| 726 | sync.Mutex |
| 727 | client TelemetryClient |
| 728 | unavailable bool |
| 729 | } |
| 730 | |
| 731 | func (b *BasicTelemetryController) New(client TelemetryClient) { |
| 732 | b.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected