WithUnstable allows access to potentially unstable features.
()
| 43 | |
| 44 | // WithUnstable allows access to potentially unstable features. |
| 45 | func WithUnstable() ExecuteOptionFn { |
| 46 | return func(o *Options) { |
| 47 | o.Unstable = true |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | // WithoutUnstable disallows access to potentially unstable features. |
| 52 | func WithoutUnstable() ExecuteOptionFn { |
no outgoing calls