summaryrefslogtreecommitdiff
path: root/go/internal/command/reporting/reporter.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/internal/command/reporting/reporter.go')
-rw-r--r--go/internal/command/reporting/reporter.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/go/internal/command/reporting/reporter.go b/go/internal/command/reporting/reporter.go
new file mode 100644
index 0000000..74bca59
--- /dev/null
+++ b/go/internal/command/reporting/reporter.go
@@ -0,0 +1,8 @@
+package reporting
+
+import "io"
+
+type Reporter struct {
+ Out io.Writer
+ ErrOut io.Writer
+}