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

package libpod

import (
	"sync"

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

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