mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-11 21:50:25 +08:00
AUTH-1941: Adds initial SSH server implementation
This commit is contained in:
committed by
Michael Borkenstein
parent
5da2109811
commit
e9c9bf3cbd
11
vendor/github.com/creack/pty/pty_unsupported.go
generated
vendored
Normal file
11
vendor/github.com/creack/pty/pty_unsupported.go
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd,!solaris
|
||||
|
||||
package pty
|
||||
|
||||
import (
|
||||
"os"
|
||||
)
|
||||
|
||||
func open() (pty, tty *os.File, err error) {
|
||||
return nil, nil, ErrUnsupported
|
||||
}
|
||||
Reference in New Issue
Block a user