mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-07-27 15:19:58 +00:00
AUTH-1941: Adds initial SSH server implementation
This commit is contained in:

committed by
Michael Borkenstein

parent
66e087a825
commit
30c9e2af9b
17
sshserver/sshserver_windows.go
Normal file
17
sshserver/sshserver_windows.go
Normal file
@@ -0,0 +1,17 @@
|
||||
//+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
|
||||
}
|
Reference in New Issue
Block a user