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