1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/vendor/github.com/creack/pty/pty_unsupported.go

12 lines
175 B
Go
Raw Normal View History

2020-03-25 11:37:39 +02:00
// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd,!solaris
2018-10-27 14:56:15 +02:00
package pty
import (
"os"
)
func open() (pty, tty *os.File, err error) {
return nil, nil, ErrUnsupported
}