mirror of
https://github.com/42wim/matterbridge
synced 2024-11-05 12:00:27 +00:00
24 lines
554 B
Go
24 lines
554 B
Go
// Copyright (c) 2015-present 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
|
|
}
|