summaryrefslogtreecommitdiff
path: root/libpod/container_attach_unsupported.go
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/container_attach_unsupported.go')
-rw-r--r--libpod/container_attach_unsupported.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/libpod/container_attach_unsupported.go b/libpod/container_attach_unsupported.go
deleted file mode 100644
index 9e8badeaf..000000000
--- a/libpod/container_attach_unsupported.go
+++ /dev/null
@@ -1,13 +0,0 @@
-//+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
-}