mirror of
https://github.com/containers/podman.git
synced 2025-12-08 23:00:23 +08:00
We missed bumping the go module, so let's do it now :) * Automated go code with github.com/sirkon/go-imports-rename * Manually via `vgrep podman/v2` the rest Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
19 lines
578 B
Go
19 lines
578 B
Go
//+build !linux
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/containers/podman/v3/libpod/define"
|
|
"k8s.io/client-go/tools/remotecommand"
|
|
)
|
|
|
|
func (c *Container) attach(streams *define.AttachStreams, keys string, resize <-chan remotecommand.TerminalSize, startContainer bool, started chan bool, attachRdy chan<- bool) error {
|
|
return define.ErrNotImplemented
|
|
}
|
|
|
|
func (c *Container) attachToExec(streams *define.AttachStreams, keys string, resize <-chan remotecommand.TerminalSize, sessionID string, startFd *os.File, attachFd *os.File) error {
|
|
return define.ErrNotImplemented
|
|
}
|