Files
portainer/api/http/handler/websocket/websocket_exec_linux.go
T
2018-07-20 11:02:06 +02:00

12 lines
126 B
Go

// +build linux
package websocket
import (
"net"
)
func createWinDial(host string) (net.Conn, error) {
return nil, nil
}