podman/libpod/pod_top_unsupported.go
Daniel J Walsh a5e37ad280
Switch all references to github.com/containers/libpod -> podman
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-07-28 08:23:45 -04:00

11 lines
253 B
Go

// +build !linux
package libpod
import "github.com/containers/podman/v2/libpod/define"
// GetPodPidInformation is exclusive to linux
func (p *Pod) GetPodPidInformation(descriptors []string) ([]string, error) {
return nil, define.ErrNotImplemented
}