20 lines
391 B
Go
20 lines
391 B
Go
//+build windows
|
|
|
|
package sshserver
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type SSHServer struct{}
|
|
|
|
func New(_ *logrus.Logger, _ string, _ chan struct{}, _ bool) (*SSHServer, error) {
|
|
return nil, errors.New("cloudflared ssh server is not supported on windows")
|
|
}
|
|
|
|
func (s *SSHServer) Start() error {
|
|
return errors.New("cloudflared ssh server is not supported on windows")
|
|
}
|