Option represents the optional function.
func(opts *Options)
| 26 | |
| 27 | // Option represents the optional function. |
| 28 | type Option func(opts *Options) |
| 29 | |
| 30 | func loadOptions(options ...Option) *Options { |
| 31 | opts := new(Options) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…