blob: 079e22486639583e47ae09bdcc9db27febb6c839 [file] [log] [blame]
divyadesai19009132020-03-04 12:58:08 +00001package api
2
3// Operator can be used to perform low-level operator tasks for Consul.
4type Operator struct {
5 c *Client
6}
7
8// Operator returns a handle to the operator endpoints.
9func (c *Client) Operator() *Operator {
10 return &Operator{c}
11}