AUTH-1941: Adds initial SSH server implementation

This commit is contained in:
Austin Cherry
2019-07-18 16:29:16 -05:00
committed by Michael Borkenstein
parent 66e087a825
commit 30c9e2af9b
62 changed files with 3384 additions and 9 deletions

View 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
}