2
0
mirror of synced 2025-02-23 22:28:11 +00:00
torrent/dialer.go
Matt Joiner 5501f994ca
Move a bunch of stuff into subpackages
The core package is very large now, and often only parts of it are needed.
2022-11-15 23:31:26 +11:00

13 lines
179 B
Go

package torrent
import (
"github.com/anacrolix/torrent/dialer"
)
type (
Dialer = dialer.T
NetworkDialer = dialer.WithNetwork
)
var DefaultNetDialer = &dialer.Default