├── LICENSE ├── README.md ├── examples └── service.go ├── go.mod ├── pipe.go └── pipe_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preslavrachev/pipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preslavrachev/pipe/HEAD/README.md -------------------------------------------------------------------------------- /examples/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preslavrachev/pipe/HEAD/examples/service.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/preslavrachev/pipe 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preslavrachev/pipe/HEAD/pipe.go -------------------------------------------------------------------------------- /pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preslavrachev/pipe/HEAD/pipe_test.go --------------------------------------------------------------------------------