github.com/rish1988/moby@v25.0.2+incompatible/testutil/request/npipe.go (about) 1 //go:build !windows 2 3 package request 4 5 import ( 6 "net" 7 "time" 8 ) 9 10 func npipeDial(path string, timeout time.Duration) (net.Conn, error) { 11 panic("npipe protocol only supported on Windows") 12 }