(ctx context.Context, cmd Cmder)
| 1440 | } |
| 1441 | |
| 1442 | func (c *Client) Process(ctx context.Context, cmd Cmder) error { |
| 1443 | err := c.processHook(ctx, cmd) |
| 1444 | cmd.SetErr(err) |
| 1445 | return err |
| 1446 | } |
| 1447 | |
| 1448 | // Options returns read-only *Options that were used to create the client. |
| 1449 | // Any alteration of the returned *Options may result in undefined behaviour. |
no test coverage detected