(f ...string)
| 42 | } |
| 43 | |
| 44 | func WithCustomFlags(f ...string) Option { |
| 45 | return func(o *Options) { |
| 46 | o.customFlags = f |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func WithRetries(i int) Option { |
| 51 | return func(o *Options) { |
no outgoing calls
no test coverage detected
searching dependent graphs…