11 lines
209 B
Go
11 lines
209 B
Go
|
|
package consumer
|
||
|
|
|
||
|
|
// Counter interface is used for exposing basic metrics from the scanner
|
||
|
|
type Counter interface {
|
||
|
|
Add(string, int64)
|
||
|
|
}
|
||
|
|
|
||
|
|
type noopCounter struct{}
|
||
|
|
|
||
|
|
func (n noopCounter) Add(string, int64) {}
|