cloudflared/sshserver/sshserver_windows.go
2019-08-21 15:49:03 -05:00

18 lines
250 B
Go

//+build windows
package sshserver
import (
"github.com/sirupsen/logrus"
)
type SSHServer struct{}
func New(_ *logrus.Logger, _ string, _ chan struct{}) (*SSHServer, error) {
return nil, nil
}
func (s *SSHServer) Start() error {
return nil
}