FILE / ScuroNeko/mtg

mtglib/network/interfaces.go

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