(config *clientConfig)
| 592 | } |
| 593 | |
| 594 | func (o *optionsOption) applyToClient(config *clientConfig) { |
| 595 | for _, option := range o.options { |
| 596 | option.applyToClient(config) |
| 597 | } |
| 598 | } |
| 599 | |
| 600 | func (o *optionsOption) applyToHandler(config *handlerConfig) { |
| 601 | for _, option := range o.options { |
nothing calls this directly
no test coverage detected