blob: c27ce0799dc4777059ccc6dd279b4e7d7774d850 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//+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
}
|