mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 21:06:34 +00:00
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
|
|
}
|