mirror of https://github.com/portainer/portainer
12 lines
148 B
Go
12 lines
148 B
Go
|
// +build !windows
|
||
|
|
||
|
package websocket
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
)
|
||
|
|
||
|
func createDial(scheme, host string) (net.Conn, error) {
|
||
|
return net.Dial(scheme, host)
|
||
|
}
|