moby--moby/vendor/src/github.com/kr/pty/doc.go

12 lines
202 B
Go
Raw Normal View History

2013-09-13 03:42:26 +00:00
// Package pty provides functions for working with Unix terminals.
package pty
import (
"os"
)
// Opens a pty and its corresponding tty.
func Open() (pty, tty *os.File, err error) {
return open()
}