| 21 | } |
| 22 | |
| 23 | type NetDialer interface { |
| 24 | DialContext(ctx context.Context, network, address string) (net.Conn, error) |
| 25 | } |
| 26 | |
| 27 | type NetDialerFunc func(ctx context.Context, network, address string) (net.Conn, error) |
| 28 |
no outgoing calls
no test coverage detected