From 5aab158c0b0db64b6136fe2fdaca8b8e9e3bd811 Mon Sep 17 00:00:00 2001 From: Wim Date: Fri, 9 Feb 2018 00:11:04 +0100 Subject: Update vendor (github.com/mattermost) --- .../platform/einterfaces/jobs/data_retention.go | 23 ---------------------- .../platform/einterfaces/jobs/elasticsearch.go | 22 --------------------- 2 files changed, 45 deletions(-) delete mode 100644 vendor/github.com/mattermost/platform/einterfaces/jobs/data_retention.go delete mode 100644 vendor/github.com/mattermost/platform/einterfaces/jobs/elasticsearch.go (limited to 'vendor/github.com/mattermost/platform/einterfaces/jobs') diff --git a/vendor/github.com/mattermost/platform/einterfaces/jobs/data_retention.go b/vendor/github.com/mattermost/platform/einterfaces/jobs/data_retention.go deleted file mode 100644 index 442f667f..00000000 --- a/vendor/github.com/mattermost/platform/einterfaces/jobs/data_retention.go +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -package jobs - -import ( - "github.com/mattermost/platform/model" -) - -type DataRetentionInterface interface { - MakeWorker() model.Worker - MakeScheduler() model.Scheduler -} - -var theDataRetentionInterface DataRetentionInterface - -func RegisterDataRetentionInterface(newInterface DataRetentionInterface) { - theDataRetentionInterface = newInterface -} - -func GetDataRetentionInterface() DataRetentionInterface { - return theDataRetentionInterface -} diff --git a/vendor/github.com/mattermost/platform/einterfaces/jobs/elasticsearch.go b/vendor/github.com/mattermost/platform/einterfaces/jobs/elasticsearch.go deleted file mode 100644 index 6d6dbe89..00000000 --- a/vendor/github.com/mattermost/platform/einterfaces/jobs/elasticsearch.go +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -package jobs - -import ( - "github.com/mattermost/platform/model" -) - -type ElasticsearchIndexerInterface interface { - MakeWorker() model.Worker -} - -var theElasticsearchIndexerInterface ElasticsearchIndexerInterface - -func RegisterElasticsearchIndexerInterface(newInterface ElasticsearchIndexerInterface) { - theElasticsearchIndexerInterface = newInterface -} - -func GetElasticsearchIndexerInterface() ElasticsearchIndexerInterface { - return theElasticsearchIndexerInterface -} -- cgit v1.2.3