(opts ...config.ClientOption)
| 123 | } |
| 124 | |
| 125 | func (c *integrationCluster) Client(opts ...config.ClientOption) (intf.Client, error) { |
| 126 | cc, err := c.ClusterClient(c.t, opts...) |
| 127 | if err != nil { |
| 128 | return nil, err |
| 129 | } |
| 130 | return integrationClient{Client: cc}, nil |
| 131 | } |
| 132 | |
| 133 | type integrationClient struct { |
| 134 | *clientv3.Client |
nothing calls this directly
no test coverage detected