├── LICENSE ├── README.md ├── example_test.go ├── go.mod ├── pipeline.go └── pipeline_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-pipeline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-pipeline/HEAD/README.md -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-pipeline/HEAD/example_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mattn/go-pipeline 2 | -------------------------------------------------------------------------------- /pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-pipeline/HEAD/pipeline.go -------------------------------------------------------------------------------- /pipeline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-pipeline/HEAD/pipeline_test.go --------------------------------------------------------------------------------