blob: 2c8718c677df1ee749f3057d9f37185feb0f1597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//+build !linux
package libpod
import (
"sync"
"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, wg *sync.WaitGroup) error {
return define.ErrNotImplemented
}
|