portainer/api/http/handler/websocket/dial.go

13 lines
168 B
Go

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