summaryrefslogtreecommitdiffstats
path: root/cmd/platform/output.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/platform/output.go')
-rw-r--r--cmd/platform/output.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/cmd/platform/output.go b/cmd/platform/output.go
deleted file mode 100644
index edf6ccc71..000000000
--- a/cmd/platform/output.go
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-package main
-
-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...)
-}