mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 23:39:41 +02:00
12 lines
126 B
Go
12 lines
126 B
Go
|
// +build linux
|
||
|
|
||
|
package websocket
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
)
|
||
|
|
||
|
func createWinDial(host string) (net.Conn, error) {
|
||
|
return nil, nil
|
||
|
}
|