mirror of https://github.com/containers/podman.git
13 lines
320 B
Go
13 lines
320 B
Go
//+build !linux
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"github.com/containers/libpod/libpod/define"
|
|
"k8s.io/client-go/tools/remotecommand"
|
|
)
|
|
|
|
func (c *Container) attach(streams *AttachStreams, keys string, resize <-chan remotecommand.TerminalSize, startContainer bool, started chan bool) error {
|
|
return define.ErrNotImplemented
|
|
}
|