(dryRun bool)
| 267 | type Option func(*TransferQueue) |
| 268 | |
| 269 | func DryRun(dryRun bool) Option { |
| 270 | return func(tq *TransferQueue) { |
| 271 | tq.dryRun = dryRun |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | func WithProgress(m *Meter) Option { |
| 276 | return func(tq *TransferQueue) { |
no outgoing calls
no test coverage detected