30 lines
481 B
Go
30 lines
481 B
Go
// +build !consulent
|
|
|
|
package consul
|
|
|
|
import (
|
|
"github.com/hashicorp/serf/serf"
|
|
)
|
|
|
|
type EnterpriseClient struct{}
|
|
|
|
func (c *Client) initEnterprise() error {
|
|
return nil
|
|
}
|
|
|
|
func (c *Client) startEnterprise() error {
|
|
return nil
|
|
}
|
|
|
|
func (c *Client) handleEnterpriseUserEvents(event serf.UserEvent) bool {
|
|
return false
|
|
}
|
|
|
|
func (c *Client) enterpriseStats() map[string]map[string]string {
|
|
return nil
|
|
}
|
|
|
|
func (_ *Client) addEnterpriseSerfTags(_ map[string]string) {
|
|
// do nothing
|
|
}
|