| 39 | } |
| 40 | |
| 41 | type serverMetrics struct { |
| 42 | info *ServerStatistics |
| 43 | clock clock.WithTicker |
| 44 | mu sync.Mutex |
| 45 | } |
| 46 | |
| 47 | func newServerMetrics() *serverMetrics { |
| 48 | return newServerMetricsWithClock(clock.RealClock{}) |
nothing calls this directly
no outgoing calls
no test coverage detected