(ctx context.Context, container string, options client.ContainerDiffOptions)
| 330 | } |
| 331 | |
| 332 | func (d *DryRunClient) ContainerDiff(ctx context.Context, container string, options client.ContainerDiffOptions) (client.ContainerDiffResult, error) { |
| 333 | return d.apiClient.ContainerDiff(ctx, container, options) |
| 334 | } |
| 335 | |
| 336 | func (d *DryRunClient) ExecAttach(ctx context.Context, execID string, config client.ExecAttachOptions) (client.ExecAttachResult, error) { |
| 337 | return client.ExecAttachResult{}, errors.New("interactive exec is not supported in dry-run mode") |
nothing calls this directly
no outgoing calls
no test coverage detected