New creates a new Options map
()
| 25 | |
| 26 | // New creates a new Options map |
| 27 | func New() *Options { |
| 28 | return &Options{ |
| 29 | m: make(map[string]any), |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | // Main returns the main Options if this is a child Options. |
| 34 | // If this is the main Options, it returns itself. |
no outgoing calls