mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-27 02:37:53 +00:00
11 lines
157 B
Go
11 lines
157 B
Go
// +build !linux,!darwin,!freebsd,!dragonfly
|
|
|
|
package pty
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func open() (pty, tty *os.File, err error) {
|
|
return nil, nil, ErrUnsupported
|
|
}
|