open-consul/agent/consul/reporting/reporting_ce.go

33 lines
512 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
//go:build !consulent
// +build !consulent
package reporting
import (
"context"
)
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
}
func (m *ReportingManager) Run(ctx context.Context) {
// no op
}