19 lines
485 B
Go
19 lines
485 B
Go
// +build !consulent
|
|
|
|
package agent
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/agent/consul"
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
"github.com/hashicorp/consul/api"
|
|
)
|
|
|
|
// fillAgentServiceEnterpriseMeta stub
|
|
func fillAgentServiceEnterpriseMeta(_ *api.AgentService, _ *structs.EnterpriseMeta) {}
|
|
|
|
// fillHealthCheckEnterpriseMeta stub
|
|
func fillHealthCheckEnterpriseMeta(_ *api.HealthCheck, _ *structs.EnterpriseMeta) {}
|
|
|
|
func (a *Agent) initEnterprise(consulCfg *consul.Config) {
|
|
}
|