summaryrefslogtreecommitdiff
path: root/go/internal/command/readwriter/readwriter.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/internal/command/readwriter/readwriter.go')
-rw-r--r--go/internal/command/readwriter/readwriter.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/go/internal/command/readwriter/readwriter.go b/go/internal/command/readwriter/readwriter.go
new file mode 100644
index 0000000..da18d30
--- /dev/null
+++ b/go/internal/command/readwriter/readwriter.go
@@ -0,0 +1,9 @@
+package readwriter
+
+import "io"
+
+type ReadWriter struct {
+ Out io.Writer
+ In io.Reader
+ ErrOut io.Writer
+}