mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-09-01 06:24:01 +03:00
FILE / ScuroNeko/mtg
mtglib/dialers/interfaces.go
Исходный файл и его история в репозитории.
12 lines
203 B
Go
12 lines
203 B
Go
package dialers
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
)
|
|
|
|
type BaseDialer interface {
|
|
Dial(network, address string) (net.Conn, error)
|
|
DialContext(ctx context.Context, network, address string) (net.Conn, error)
|
|
}
|