22 lines
352 B
Go
22 lines
352 B
Go
|
//go:build !consulent
|
||
|
// +build !consulent
|
||
|
|
||
|
package reporting
|
||
|
|
||
|
type EntDeps struct{}
|
||
|
|
||
|
func (rm *ReportingManager) initEnterpriseReporting(entDeps EntDeps) error {
|
||
|
// no op
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (rm *ReportingManager) StartReportingAgent() error {
|
||
|
// no op
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (rm *ReportingManager) StopReportingAgent() error {
|
||
|
// no op
|
||
|
return nil
|
||
|
}
|