https://github.com/mitchellh/iochan
A Go library for turning `io.Reader` into channels.
https://github.com/mitchellh/iochan
Last synced: 6 months ago
JSON representation
A Go library for turning `io.Reader` into channels.
- Host: GitHub
- URL: https://github.com/mitchellh/iochan
- Owner: mitchellh
- License: mit
- Created: 2013-06-03T03:05:08.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2019-04-08T09:46:16.000Z (about 6 years ago)
- Last Synced: 2024-12-16T18:39:33.874Z (6 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 45
- Watchers: 5
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# iochan
iochan is a Go library for treating `io` readers and writers like channels.
This is useful when sometimes you wish to use `io.Reader` and such in `select`
statements.## Installation
Standard `go get`:
```
$ go get github.com/mitchellh/iochan
```