reg/vendor/github.com/docker/docker-ce/components/engine/integration-cli/request/npipe.go
Jess Frazelle ab6c553e6b
update deps
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-03-06 10:41:43 -05:00

13 lines
249 B
Go

// +build !windows
package request // import "github.com/docker/docker/integration-cli/request"
import (
"net"
"time"
)
func npipeDial(path string, timeout time.Duration) (net.Conn, error) {
panic("npipe protocol only supported on Windows")
}