Stats is an implementation of
| 33 | |
| 34 | // Stats is an implementation of |
| 35 | type Stats struct { |
| 36 | // guarded by mux; read it through Get, never directly |
| 37 | counters map[string]int64 |
| 38 | } |
| 39 | |
| 40 | // NewStats created new instance of Stats |
nothing calls this directly
no outgoing calls
no test coverage detected