8 lines
134 B
Go
8 lines
134 B
Go
|
package cluster
|
||
|
|
||
|
import "github.com/influxdb/influxdb/protocol"
|
||
|
|
||
|
type ResponseChannel interface {
|
||
|
Yield(r *protocol.Response) bool
|
||
|
}
|