mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-13 05:15:53 +02:00
go mod vendor
This commit is contained in:
parent
2dcc52abd0
commit
8a06b6067e
38 changed files with 333 additions and 20 deletions
16
vendor/github.com/creack/pty/doc.go
generated
vendored
Normal file
16
vendor/github.com/creack/pty/doc.go
generated
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
// Package pty provides functions for working with Unix terminals.
|
||||
package pty
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"os"
|
||||
)
|
||||
|
||||
// ErrUnsupported is returned if a function is not
|
||||
// available on the current platform.
|
||||
var ErrUnsupported = errors.New("unsupported")
|
||||
|
||||
// Opens a pty and its corresponding tty.
|
||||
func Open() (pty, tty *os.File, err error) {
|
||||
return open()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue