11 lines
136 B
Go
11 lines
136 B
Go
package net
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
)
|
|
|
|
type Dialer interface {
|
|
Dial(ctx context.Context, network, addr string) (net.Conn, error)
|
|
}
|