md2gmi/pipe/pipeline.go
2021-07-05 01:32:00 +08:00

8 lines
165 B
Go

package pipe
type Connector chan StreamItem
type Source func() chan StreamItem
type Sink func(chan StreamItem)
type Pipeline func(chan StreamItem) chan StreamItem