(ctx context.Context)
| 85 | } |
| 86 | |
| 87 | func (c *client) handShake(ctx context.Context) (err chan error) { |
| 88 | return utils.MergeErrors(ctx, c.sendID(ctx), c.receiveID(ctx)) |
| 89 | } |
| 90 | |
| 91 | func (c *client) receiveID(ctx context.Context) (errc chan error) { |
| 92 | errc = make(chan error) |
no test coverage detected