mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 19:04:02 +03:00
FILE / ScuroNeko/mtg
mtglib/network/interfaces.go
Исходный файл и его история в репозитории.
11 lines
150 B
Go
11 lines
150 B
Go
package network
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
)
|
|
|
|
type Dialer interface {
|
|
DialContext(ctx context.Context, network, address string) (net.Conn, error)
|
|
}
|