(ctx context.Context, id uint64)
| 416 | } |
| 417 | |
| 418 | func (c integrationClient) MemberRemove(ctx context.Context, id uint64) (*clientv3.MemberRemoveResponse, error) { |
| 419 | return c.Client.MemberRemove(ctx, id) |
| 420 | } |
| 421 | |
| 422 | func (c integrationClient) MemberList(ctx context.Context, serializable bool) (*clientv3.MemberListResponse, error) { |
| 423 | if serializable { |
nothing calls this directly
no test coverage detected