summaryrefslogtreecommitdiffstats
path: root/einterfaces/compliance.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-03-14 10:22:36 -0700
committer=Corey Hulen <corey@hulen.com>2016-03-14 10:22:36 -0700
commit397ebec88c2db3569efd77238bf877e976492d34 (patch)
tree926fcda714c3ce277d07cb1278019a71f4e6d6ee /einterfaces/compliance.go
parent013f27ff1a5b502560864ebba43bd2ba6c8020ab (diff)
downloadchat-397ebec88c2db3569efd77238bf877e976492d34.tar.gz
chat-397ebec88c2db3569efd77238bf877e976492d34.tar.bz2
chat-397ebec88c2db3569efd77238bf877e976492d34.zip
PLT-2115 adding compliance
Diffstat (limited to 'einterfaces/compliance.go')
-rw-r--r--einterfaces/compliance.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/einterfaces/compliance.go b/einterfaces/compliance.go
index 522a949db..cd43152da 100644
--- a/einterfaces/compliance.go
+++ b/einterfaces/compliance.go
@@ -3,10 +3,13 @@
package einterfaces
-import ()
+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