summaryrefslogtreecommitdiff
path: root/libpod/pod_top_unsupported.go
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/pod_top_unsupported.go')
-rw-r--r--libpod/pod_top_unsupported.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/libpod/pod_top_unsupported.go b/libpod/pod_top_unsupported.go
index d44470523..9a3333275 100644
--- a/libpod/pod_top_unsupported.go
+++ b/libpod/pod_top_unsupported.go
@@ -2,7 +2,9 @@
package libpod
+import "github.com/containers/libpod/libpod/define"
+
// GetPodPidInformation is exclusive to linux
func (p *Pod) GetPodPidInformation(descriptors []string) ([]string, error) {
- return nil, ErrNotImplemented
+ return nil, define.ErrNotImplemented
}