| 12 | ) |
| 13 | |
| 14 | type Prefixed struct { |
| 15 | logger *logger.Logger |
| 16 | seen map[string]uint |
| 17 | counter *uint |
| 18 | mutex sync.Mutex |
| 19 | } |
| 20 | |
| 21 | func NewPrefixed(logger *logger.Logger) *Prefixed { |
| 22 | var counter uint |
nothing calls this directly
no outgoing calls
no test coverage detected