cloudflared-mirror/sshserver/sshserver_windows.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
}