18 lines
250 B
Go
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
|
||
|
}
|