package ipc import ( "io" "net" ) func (ch *ClientHandlers) Dial() (conn io.ReadWriteCloser, err error) { return net.Dial("unix", ch.Addr) }