go mod vendor

This commit is contained in:
Dawid Dziurla 2020-03-25 10:37:39 +01:00 committed by Jesse Duffield
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
View 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()
}