sampler-fork/data/consumer.go

7 lines
109 B
Go
Raw Normal View History

2019-01-31 00:02:38 +00:00
package data
type Consumer interface {
ConsumeValue(value string, label string)
ConsumeError(err error)
}