FILE / ScuroNeko/mtg

mtglib/network/interfaces.go

Исходный файл и его история в репозитории.
FILE ecfd550a958a0bee74eeb24d5b16f093af22e41e
Files
mtg/mtglib/network/interfaces.go
T

12 lines
199 B
Go

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