Signed-off-by: Vincent Demeester <vincent@sbr.pm> Upstream-commit: 48de91a33f097d4c20515088af1f5bcb9a98c5c9 Component: engine
13 lines
187 B
Go
13 lines
187 B
Go
// +build !windows
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"net"
|
|
"time"
|
|
)
|
|
|
|
func npipeDial(path string, timeout time.Duration) (net.Conn, error) {
|
|
panic("npipe protocol only supported on Windows")
|
|
}
|