blob: fa531a1b4da5ec3de1ed9cb1559d6e20f27f289a [file] [log] [blame]
// +build !windows
package main
import (
"net"
"time"
)
func npipeDial(path string, timeout time.Duration) (net.Conn, error) {
panic("npipe protocol only supported on Windows")
}