summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mattermost/mattermost-server/einterfaces/jobs')
-rw-r--r--vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/data_retention.go13
-rw-r--r--vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/elasticsearch.go17
-rw-r--r--vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/ldap_sync.go13
-rw-r--r--vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/message_export.go13
4 files changed, 0 insertions, 56 deletions
diff --git a/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/data_retention.go b/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/data_retention.go
deleted file mode 100644
index 73f78e4f..00000000
--- a/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/data_retention.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-package jobs
-
-import (
- "github.com/mattermost/mattermost-server/model"
-)
-
-type DataRetentionJobInterface interface {
- MakeWorker() model.Worker
- MakeScheduler() model.Scheduler
-}
diff --git a/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/elasticsearch.go b/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/elasticsearch.go
deleted file mode 100644
index 16e0d769..00000000
--- a/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/elasticsearch.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-package jobs
-
-import (
- "github.com/mattermost/mattermost-server/model"
-)
-
-type ElasticsearchIndexerInterface interface {
- MakeWorker() model.Worker
-}
-
-type ElasticsearchAggregatorInterface interface {
- MakeWorker() model.Worker
- MakeScheduler() model.Scheduler
-}
diff --git a/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/ldap_sync.go b/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/ldap_sync.go
deleted file mode 100644
index 5565afe4..00000000
--- a/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/ldap_sync.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-package jobs
-
-import (
- "github.com/mattermost/mattermost-server/model"
-)
-
-type LdapSyncInterface interface {
- MakeWorker() model.Worker
- MakeScheduler() model.Scheduler
-}
diff --git a/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/message_export.go b/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/message_export.go
deleted file mode 100644
index 74b0df75..00000000
--- a/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs/message_export.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-package jobs
-
-import (
- "github.com/mattermost/mattermost-server/model"
-)
-
-type MessageExportJobInterface interface {
- MakeWorker() model.Worker
- MakeScheduler() model.Scheduler
-}