Files
2026-07-13 12:08:39 +08: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)
}