(f ProgressFunc)
| 159 | type Opt func(*Config) |
| 160 | |
| 161 | func WithProgress(f ProgressFunc) Opt { |
| 162 | return func(opts *Config) { |
| 163 | opts.Progress = f |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | // Progress is used to represent a particular progress event or incremental |
| 168 | // update for the provided named object. The parents represent the names of |
no outgoing calls
searching dependent graphs…