├── .gitignore ├── LICENSE ├── choice.go ├── choice_test.go ├── crawler.go ├── direct.go ├── examples ├── integration │ └── example.go └── webcrawlers │ └── example.go ├── flow.go ├── flow_test.go ├── glide.lock ├── glide.yaml ├── header.go ├── http.go ├── message.go ├── pipe.go ├── print.go ├── route.go ├── set.go ├── stack.go ├── template.go ├── transform.go ├── transform_test.go ├── unmarshall.go ├── uri.go └── uri_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/LICENSE -------------------------------------------------------------------------------- /choice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/choice.go -------------------------------------------------------------------------------- /choice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/choice_test.go -------------------------------------------------------------------------------- /crawler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/crawler.go -------------------------------------------------------------------------------- /direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/direct.go -------------------------------------------------------------------------------- /examples/integration/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/examples/integration/example.go -------------------------------------------------------------------------------- /examples/webcrawlers/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/examples/webcrawlers/example.go -------------------------------------------------------------------------------- /flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/flow.go -------------------------------------------------------------------------------- /flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/flow_test.go -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/glide.yaml -------------------------------------------------------------------------------- /header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/header.go -------------------------------------------------------------------------------- /http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/http.go -------------------------------------------------------------------------------- /message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/message.go -------------------------------------------------------------------------------- /pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/pipe.go -------------------------------------------------------------------------------- /print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/print.go -------------------------------------------------------------------------------- /route.go: -------------------------------------------------------------------------------- 1 | package flow 2 | -------------------------------------------------------------------------------- /set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/set.go -------------------------------------------------------------------------------- /stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/stack.go -------------------------------------------------------------------------------- /template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/template.go -------------------------------------------------------------------------------- /transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/transform.go -------------------------------------------------------------------------------- /transform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/transform_test.go -------------------------------------------------------------------------------- /unmarshall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/unmarshall.go -------------------------------------------------------------------------------- /uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/uri.go -------------------------------------------------------------------------------- /uri_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PMoneda/flow/HEAD/uri_test.go --------------------------------------------------------------------------------