mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 03:11:02 +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)
|
|
}
|