mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-12 04:23:03 +02:00
12 lines
175 B
Go
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
|
|
}
|