summaryrefslogtreecommitdiffstats
path: root/einterfaces/jobs/data_retention.go
blob: 340ed1b88563bd6689d81d166c5eac0cfe2576fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package jobs

import (
	"github.com/mattermost/platform/model"
	"github.com/mattermost/platform/store"
)

type DataRetentionInterface interface {
	MakeJob(store store.Store) model.Job
}

var theDataRetentionInterface DataRetentionInterface

func RegisterDataRetentionInterface(newInterface DataRetentionInterface) {
	theDataRetentionInterface = newInterface
}

func GetDataRetentionInterface() DataRetentionInterface {
	return theDataRetentionInterface
}