1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-19 00:28:03 +02:00
Files
lazygit/vendor/github.com/creack/pty/pty_unsupported.go
Dawid Dziurla 8a06b6067e go mod vendor
2020-03-25 21:26:15 +11: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
}