blob: 85e8b32e6b49dd8cdcc305667db7d1201396529a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//+build !linux
package libpod
import (
"os"
"github.com/containers/podman/v3/libpod/define"
)
func (c *Container) attach(streams *define.AttachStreams, keys string, resize <-chan define.TerminalSize, startContainer bool, started chan bool, attachRdy chan<- bool) error {
return define.ErrNotImplemented
}
func (c *Container) attachToExec(streams *define.AttachStreams, keys string, resize <-chan define.TerminalSize, sessionID string, startFd *os.File, attachFd *os.File) error {
return define.ErrNotImplemented
}
|