FILE / ScuroNeko/mtg

mtglib/network/interfaces.go

Исходный файл и его история в репозитории.
FILE d5147f19358c35ae6b136cb03120f2a3b22de98e
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)
}