1
0
mirror of https://github.com/fumiama/terasu-cloudflared.git synced 2026-06-14 07:20:36 +08:00
Files
terasu-cloudflared/sshserver/sshserver_windows.go
2019-08-28 09:58:42 -05:00

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")
}