forked from Ivasoft/traefik
Switch to golang/dep.
This commit is contained in:
committed by
Traefiker
parent
d88554fa92
commit
044d87d96d
17
vendor/github.com/opencontainers/runc/libcontainer/console.go
generated
vendored
Normal file
17
vendor/github.com/opencontainers/runc/libcontainer/console.go
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
package libcontainer
|
||||
|
||||
import (
|
||||
"io"
|
||||
"os"
|
||||
)
|
||||
|
||||
// Console represents a pseudo TTY.
|
||||
type Console interface {
|
||||
io.ReadWriteCloser
|
||||
|
||||
// Path returns the filesystem path to the slave side of the pty.
|
||||
Path() string
|
||||
|
||||
// Fd returns the fd for the master of the pty.
|
||||
File() *os.File
|
||||
}
|
||||
Reference in New Issue
Block a user