mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-06 17:40:24 +08: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