portainer/api/http/handler/websocket/websocket_exec_linux.go

12 lines
126 B
Go

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