(ignore bool)
| 17 | } |
| 18 | |
| 19 | func withIgnoreMissingObject(ignore bool) Option { |
| 20 | return func(o sdkpkg.PatchCollectorOptionApplier) { |
| 21 | o.WithIgnoreMissingObject(ignore) |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | func WithIgnoreMissingObject() Option { |
| 26 | return withIgnoreMissingObject(true) |
no test coverage detected