mirror of
https://github.com/cbeuw/Cloak.git
synced 2024-11-11 13:11:03 +00:00
8 lines
105 B
Go
8 lines
105 B
Go
package common
|
|
|
|
import "net"
|
|
|
|
type Dialer interface {
|
|
Dial(network, address string) (net.Conn, error)
|
|
}
|