mirror of
https://github.com/netbirdio/netbird.git
synced 2025-01-18 20:08:28 +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)
|
|
}
|