2
0
mirror of https://github.com/status-im/consul.git synced 2025-03-03 06:40:45 +00:00
consul/api/operator_segment.go
2017-09-01 12:40:07 -07:00

12 lines
289 B
Go

package api
// SegmentList returns all the available LAN segments.
func (op *Operator) SegmentList(q *QueryOptions) ([]string, *QueryMeta, error) {
var out []string
qm, err := op.c.query("/v1/operator/segment", &out, q)
if err != nil {
return nil, nil, err
}
return out, qm, nil
}