summaryrefslogtreecommitdiffstats
path: root/cmd/output.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/output.go')
-rw-r--r--cmd/output.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/cmd/output.go b/cmd/output.go
deleted file mode 100644
index 630e831de..000000000
--- a/cmd/output.go
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-package cmd
-
-import (
- "fmt"
- "os"
-)
-
-func CommandPrintln(a ...interface{}) (int, error) {
- return fmt.Println(a...)
-}
-
-func CommandPrintErrorln(a ...interface{}) (int, error) {
- return fmt.Fprintln(os.Stderr, a...)
-}
-
-func CommandPrettyPrintln(a ...interface{}) (int, error) {
- return fmt.Fprintln(os.Stderr, a...)
-}