12 lines
149 B
Go
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)
|
|
}
|