mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
13 lines
179 B
Go
13 lines
179 B
Go
// +build windows
|
|
|
|
package websocket
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/Microsoft/go-winio"
|
|
)
|
|
|
|
func createWinDial(host string) (net.Conn, error) {
|
|
return winio.DialPipe(host, nil)
|
|
}
|