mirror of
https://github.com/containers/podman.git
synced 2025-05-22 01:27:07 +08:00

Add the ability to cross-compile podman remote for OSX. Also, add image exists and tag to remote-client. Signed-off-by: baude <bbaude@redhat.com>
12 lines
248 B
Go
12 lines
248 B
Go
//+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
|
|
}
|