summaryrefslogtreecommitdiff
path: root/go/internal/command/reporting/reporter.go
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2019-03-15 17:16:17 +0000
committerNick Thomas <nick@gitlab.com>2019-03-15 17:16:17 +0000
commitf237aba6df1c1873f1f9d5ba18c3b8924d85cb51 (patch)
tree22d69b9450693bb153e58dbe8b7cd6feb3f8e1e0 /go/internal/command/reporting/reporter.go
parent049beb74303a03d9fa598d23b150e0ccea3cd60d (diff)
parent83c0f18e1de04b3bad9c424084e738e911c47336 (diff)
downloadgitlab-shell-f237aba6df1c1873f1f9d5ba18c3b8924d85cb51.tar.gz
Merge branch 'bvl-discover-command' into 'master'
Call gitlab "/internal/discover" from go Closes #175 See merge request gitlab-org/gitlab-shell!283
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
+}