github.imxd.top/hashicorp/consul@v1.4.5/agent/consul/enterprise_client_oss.go (about) 1 // +build !ent 2 3 package consul 4 5 import ( 6 "github.com/hashicorp/serf/serf" 7 ) 8 9 type EnterpriseClient struct{} 10 11 func (c *Client) initEnterprise() error { 12 return nil 13 } 14 15 func (c *Client) startEnterprise() error { 16 return nil 17 } 18 19 func (c *Client) handleEnterpriseUserEvents(event serf.UserEvent) bool { 20 return false 21 } 22 23 func (c *Client) enterpriseStats() map[string]map[string]string { 24 return nil 25 }