bottin/vendor/github.com/hashicorp/consul/api/operator.go
Simon Beck 22a8897e72 Vendor
2022-02-08 20:24:59 +01:00

12 lines
241 B
Go

package api
// Operator can be used to perform low-level operator tasks for Consul.
type Operator struct {
c *Client
}
// Operator returns a handle to the operator endpoints.
func (c *Client) Operator() *Operator {
return &Operator{c}
}