github.com/Jeffail/benthos/v3@v3.65.0/lib/pipeline/type.go (about)

     1  package pipeline
     2  
     3  import (
     4  	"github.com/Jeffail/benthos/v3/lib/types"
     5  )
     6  
     7  // Type is implemented by all pipeline implementations.
     8  type Type interface {
     9  	types.Pipeline
    10  }