--- Volume operations ---
(ctx context.Context, op Operation)
| 58 | // --- Volume operations --- |
| 59 | |
| 60 | func (exec *planExecutor) execCreateVolume(ctx context.Context, op Operation) error { |
| 61 | return exec.compose.createVolume(ctx, *op.Volume) |
| 62 | } |
| 63 | |
| 64 | func (exec *planExecutor) execRemoveVolume(ctx context.Context, op Operation) error { |
| 65 | _, err := exec.compose.apiClient().VolumeRemove(ctx, op.Name, client.VolumeRemoveOptions{Force: true}) |
no test coverage detected