mirror of
https://github.com/netbirdio/netbird.git
synced 2025-07-15 22:05:17 +02:00
8 lines
108 B
Go
8 lines
108 B
Go
package tcp
|
|
|
|
import "net"
|
|
|
|
func Dial(address string) (net.Conn, error) {
|
|
return net.Dial("tcp", address)
|
|
}
|