Cloak/internal/util/dialer.go

8 lines
103 B
Go

package util
import "net"
type Dialer interface {
Dial(network, address string) (net.Conn, error)
}