FILE / ScuroNeko/mtg

mtglib/network/interfaces.go

Исходный файл и его история в репозитории.
FILE 09f8233bc6f0231436f312cd47cc5997dbe580cc
Files
mtg/mtglib/network/interfaces.go
T
2021-03-05 14:12:38 +03:00

11 lines
150 B
Go

package network
import (
"context"
"net"
)
type Dialer interface {
DialContext(ctx context.Context, network, address string) (net.Conn, error)
}