mirror of
https://github.com/smallnest/rpcx.git
synced 2025-09-26 20:21:14 +08:00
12 lines
178 B
Go
12 lines
178 B
Go
package client
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/akutz/memconn"
|
|
)
|
|
|
|
func newMemuConn(c *Client, network, address string) (net.Conn, error) {
|
|
return memconn.Dial(network, address)
|
|
}
|