()
| 673 | func (s *Server) telemetryStatus() map[string]any { |
| 674 | type statusProvider interface { |
| 675 | StatusSummary() map[string]any |
| 676 | } |
| 677 | if p, ok := s.telemetry.(statusProvider); ok { |
| 678 | return p.StatusSummary() |
no outgoing calls
no test coverage detected