blob: 4fd735f2dbc06ea4d96eccbbc02df51fbfa10964 [file] [log] [blame]
package main
import (
"net"
"time"
"github.com/Microsoft/go-winio"
)
func npipeDial(path string, timeout time.Duration) (net.Conn, error) {
return winio.DialPipe(path, &timeout)
}