Sign in
cos
/
third_party
/
docker
/
refs/heads/release-R133
/
.
/
testutil
/
request
/
npipe.go
blob: 32c528486ff7bce05a4ac28e6fcceb704ec0f684 [
file
] [
edit
]
//go:build !windows
package request
import (
"net"
"time"
)
func npipeDial(path string, timeout time.Duration) (net.Conn, error) {
panic("npipe protocol only supported on Windows")
}