1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 23:39:41 +02:00
portainer/api/http/handler/websocket/websocket_exec_linux.go

12 lines
126 B
Go
Raw Normal View History

2018-07-20 12:02:06 +03:00
// +build linux
package websocket
import (
"net"
)
func createWinDial(host string) (net.Conn, error) {
return nil, nil
}