summaryrefslogtreecommitdiff
path: root/libpod/container_attach_unsupported.go
blob: 068652b2987cfcbe3fdc399be5a9620de8838052 (plain)
1
2
3
4
5
6
7
8
9
10
11
//+build !linux

package libpod

import (
	"k8s.io/client-go/tools/remotecommand"
)

func (c *Container) attach(streams *AttachStreams, keys string, resize <-chan remotecommand.TerminalSize, startContainer bool) error {
	return ErrNotImplemented
}