npipe.go 185 B

123456789101112
  1. // +build !windows
  2. package main
  3. import (
  4. "net"
  5. "time"
  6. )
  7. func npipeDial(path string, timeout time.Duration) (net.Conn, error) {
  8. panic("npipe protocol only supported on Windows")
  9. }