NewOptions creates a new set of storage options with defaults
()
| 30 | |
| 31 | // NewOptions creates a new set of storage options with defaults |
| 32 | func NewOptions() Options { |
| 33 | opts := options{ |
| 34 | instrumentOpts: utils.NewOptions(), |
| 35 | } |
| 36 | return &opts |
| 37 | } |
| 38 | |
| 39 | func (o *options) SetInstrumentOptions(value utils.Options) Options { |
| 40 | o.instrumentOpts = value |
no test coverage detected