summaryrefslogtreecommitdiffstats
path: root/einterfaces/compliance.go
blob: cd43152da452b6cf5b2f2aeb071280f02d59c1f5 (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) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package einterfaces

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

type ComplianceInterface interface {
	StartComplianceDailyJob()
	RunComplianceJob(jobName string, dir string, filename string, startTime int64, endTime int64) *model.AppError
}

var theComplianceInterface ComplianceInterface

func RegisterComplianceInterface(newInterface ComplianceInterface) {
	theComplianceInterface = newInterface
}

func GetComplianceInterface() ComplianceInterface {
	return theComplianceInterface
}