2023-04-20 12:40:22 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2023-04-18 15:03:05 +00:00
|
|
|
//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
|
|
|
|
}
|