1
0
mirror of https://github.com/fumiama/terasu-cloudflared.git synced 2026-06-07 19:10:26 +08:00
Files
terasu-cloudflared/vendor/github.com/creack/pty/pty_unsupported.go
2019-08-21 15:49:03 -05:00

12 lines
175 B
Go

// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd,!solaris
package pty
import (
"os"
)
func open() (pty, tty *os.File, err error) {
return nil, nil, ErrUnsupported
}