package tsdb
import "github.com/influxdb/influxdb/models"
// Executor is an interface for a query executor.
type Executor interface {
Execute() <-chan *models.Row
}