(opts ...configx.OptionModifier)
| 56 | } |
| 57 | |
| 58 | func WithConfigOptions(opts ...configx.OptionModifier) OptionsModifier { |
| 59 | return func(o *options) { |
| 60 | o.configOpts = append(o.configOpts, opts...) |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | // WithDBOptionsModifier modifies the pop connection details before the connection is opened. |
| 65 | func WithDBOptionsModifier(f ...func(details *pop.ConnectionDetails)) OptionsModifier { |
no outgoing calls