summaryrefslogtreecommitdiff
path: root/internal/command/readwriter/readwriter.go
blob: da18d3044c9f1c118c182e3a6b24bad161220c70 (plain)
1
2
3
4
5
6
7
8
9
package readwriter

import "io"

type ReadWriter struct {
	Out    io.Writer
	In     io.Reader
	ErrOut io.Writer
}