summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/mattermost-server/einterfaces/jobs
diff options
context:
space:
mode:
authorWim <wim@42.be>2018-08-06 21:47:05 +0200
committerWim <wim@42.be>2018-08-06 21:47:05 +0200
commit51062863a5c34d81e296cf15c61140911037cf3b (patch)
tree9b5e044672486326c7a0ca8fb26430f37bf4d83c /vendor/github.com/mattermost/mattermost-server/einterfaces/jobs
parent4fb4b7aa6c02a54db8ad8dd98e4d321396926c0d (diff)
downloadmatterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.tar.gz
matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.tar.bz2
matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.zip
Use mod vendor for vendored directory (backwards compatible)
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
-}