| 386 | } |
| 387 | |
| 388 | type Dialer struct { |
| 389 | Opt option |
| 390 | } |
| 391 | |
| 392 | func (d Dialer) DialContext(ctx context.Context, network, address string) (net.Conn, error) { |
| 393 | return DialContext(ctx, network, address, WithOption(d.Opt)) |
nothing calls this directly
no outgoing calls
no test coverage detected