summaryrefslogtreecommitdiffstats
path: root/einterfaces/cluster.go
diff options
context:
space:
mode:
Diffstat (limited to 'einterfaces/cluster.go')
-rw-r--r--einterfaces/cluster.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/einterfaces/cluster.go b/einterfaces/cluster.go
index 8b9ef1a2d..b5ef4772a 100644
--- a/einterfaces/cluster.go
+++ b/einterfaces/cluster.go
@@ -23,13 +23,3 @@ type ClusterInterface interface {
GetLogs(page, perPage int) ([]string, *model.AppError)
ConfigChanged(previousConfig *model.Config, newConfig *model.Config, sendToOtherServer bool) *model.AppError
}
-
-var theClusterInterface ClusterInterface
-
-func RegisterClusterInterface(newInterface ClusterInterface) {
- theClusterInterface = newInterface
-}
-
-func GetClusterInterface() ClusterInterface {
- return theClusterInterface
-}