https://github.com/mitchellh/iochan
A Go library for turning `io.Reader` into channels.
https://github.com/mitchellh/iochan
Last synced: 10 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 13 years ago)
- Default Branch: master
- Last Pushed: 2019-04-08T09:46:16.000Z (about 7 years ago)
- Last Synced: 2025-08-14T23:57:49.158Z (11 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 45
- Watchers: 4
- Forks: 7
- 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
```