mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0595c01718
kr/pty was moved to creak/pty and the old location was archived. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
11 lines
175 B
Go
11 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
|
|
}
|