md2gmi/pipe/pipe.go
2021-07-05 22:12:10 +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