WithIncludeRawData sets whether to include raw input/output data in results
(include bool)
| 75 | |
| 76 | // WithIncludeRawData sets whether to include raw input/output data in results |
| 77 | func WithIncludeRawData(include bool) Option { |
| 78 | return func(opts *Options) { |
| 79 | opts.IncludeRawData = include |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | // WithEnablePrint enables print/log statements in policies |
| 84 | func WithEnablePrint(enable bool) Option { |
no outgoing calls