mirror of https://github.com/status-im/consul.git
14 lines
296 B
Go
14 lines
296 B
Go
|
// +build !ent
|
||
|
|
||
|
package command
|
||
|
|
||
|
import (
|
||
|
consulapi "github.com/hashicorp/consul/api"
|
||
|
)
|
||
|
|
||
|
// getSegmentMembers returns an empty list since network segments are not
|
||
|
// supported in OSS Consul.
|
||
|
func getSegmentMembers(client *consulapi.Client) ([]*consulapi.AgentMember, error) {
|
||
|
return nil, nil
|
||
|
}
|