Files
portainer/api/http/handler/websocket/websocket_dial.go
2018-07-23 16:49:04 +02:00

12 lines
148 B
Go

// +build !windows
package websocket
import (
"net"
)
func createDial(scheme, host string) (net.Conn, error) {
return net.Dial(scheme, host)
}