summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/platform/einterfaces/compliance.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2016-05-21 14:14:08 +0200
committerWim <wim@42.be>2016-05-21 14:14:08 +0200
commit33844fa60c5b432c4b6a4fb966be6e8f04627165 (patch)
treea678cbaed822633302e6a502689445ef4231ae69 /vendor/github.com/mattermost/platform/einterfaces/compliance.go
parent85faa43145c6419529f8677026394bcdaee2157f (diff)
downloadmatterbridge-msglm-33844fa60c5b432c4b6a4fb966be6e8f04627165.tar.gz
matterbridge-msglm-33844fa60c5b432c4b6a4fb966be6e8f04627165.tar.bz2
matterbridge-msglm-33844fa60c5b432c4b6a4fb966be6e8f04627165.zip
Commit mattermost vendoringv0.4.1
Diffstat (limited to 'vendor/github.com/mattermost/platform/einterfaces/compliance.go')
-rw-r--r--vendor/github.com/mattermost/platform/einterfaces/compliance.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/github.com/mattermost/platform/einterfaces/compliance.go b/vendor/github.com/mattermost/platform/einterfaces/compliance.go
new file mode 100644
index 00000000..2e72c67d
--- /dev/null
+++ b/vendor/github.com/mattermost/platform/einterfaces/compliance.go
@@ -0,0 +1,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(job *model.Compliance) *model.AppError
+}
+
+var theComplianceInterface ComplianceInterface
+
+func RegisterComplianceInterface(newInterface ComplianceInterface) {
+ theComplianceInterface = newInterface
+}
+
+func GetComplianceInterface() ComplianceInterface {
+ return theComplianceInterface
+}