Files
portainer/api/http/handler/websocket/dial.go
T
2026-01-08 16:35:18 -03:00

12 lines
149 B
Go

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