github.com/sl1pm4t/consul@v1.4.5-0.20190325224627-74c31c540f9c/api/operator.go (about)

     1  package api
     2  
     3  // Operator can be used to perform low-level operator tasks for Consul.
     4  type Operator struct {
     5  	c *Client
     6  }
     7  
     8  // Operator returns a handle to the operator endpoints.
     9  func (c *Client) Operator() *Operator {
    10  	return &Operator{c}
    11  }