github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/libpod/oci_attach_unsupported.go (about)

     1  //+build !linux
     2  
     3  package libpod
     4  
     5  import (
     6  	"os"
     7  
     8  	"github.com/containers/libpod/libpod/define"
     9  	"k8s.io/client-go/tools/remotecommand"
    10  )
    11  
    12  func (c *Container) attach(streams *define.AttachStreams, keys string, resize <-chan remotecommand.TerminalSize, startContainer bool, started chan bool) error {
    13  	return define.ErrNotImplemented
    14  }
    15  
    16  func (c *Container) attachToExec(streams *define.AttachStreams, keys string, resize <-chan remotecommand.TerminalSize, sessionID string, startFd *os.File, attachFd *os.File) error {
    17  	return define.ErrNotImplemented
    18  }