2019-12-06 20:35:58 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package agent
|
|
|
|
|
2019-12-10 02:26:41 +00:00
|
|
|
import (
|
2020-02-04 20:58:56 +00:00
|
|
|
"github.com/hashicorp/consul/agent/config"
|
2019-12-10 02:26:41 +00:00
|
|
|
"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) {}
|
2019-12-06 20:35:58 +00:00
|
|
|
|
|
|
|
func (a *Agent) initEnterprise(consulCfg *consul.Config) {
|
|
|
|
}
|
2020-02-04 20:58:56 +00:00
|
|
|
|
|
|
|
func (a *Agent) loadEnterpriseTokens(conf *config.RuntimeConfig) {
|
|
|
|
}
|