Files
podman/libpod/oci_attach_unsupported.go
Daniel J Walsh a5e37ad280 Switch all references to github.com/containers/libpod -> podman
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-07-28 08:23:45 -04:00

19 lines
555 B
Go

//+build !linux
package libpod
import (
"os"
"github.com/containers/podman/v2/libpod/define"
"k8s.io/client-go/tools/remotecommand"
)
func (c *Container) attach(streams *define.AttachStreams, keys string, resize <-chan remotecommand.TerminalSize, startContainer bool, started chan bool) error {
return define.ErrNotImplemented
}
func (c *Container) attachToExec(streams *define.AttachStreams, keys string, resize <-chan remotecommand.TerminalSize, sessionID string, startFd *os.File, attachFd *os.File) error {
return define.ErrNotImplemented
}