mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 05:23:04 +00:00
12 lines
289 B
Go
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
|
|
}
|