mirror of
https://github.com/qdm12/gluetun.git
synced 2026-07-26 04:16:23 +02:00
11 lines
144 B
Go
11 lines
144 B
Go
package resolver
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
)
|
|
|
|
type Dialer interface {
|
|
Dial(ctx context.Context, network, address string) (net.Conn, error)
|
|
}
|