github.com/gdevillele/moby@v1.13.0/integration-cli/npipe.go (about)

     1  // +build !windows
     2  
     3  package main
     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  }