| 850 | } |
| 851 | |
| 852 | type picker struct { |
| 853 | result balancer.PickResult |
| 854 | err error |
| 855 | } |
| 856 | |
| 857 | func (p *picker) Pick(balancer.PickInfo) (balancer.PickResult, error) { |
| 858 | return p.result, p.err |
nothing calls this directly
no outgoing calls
no test coverage detected