mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 19:31:06 +01: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)
|
||
|
}
|