mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-26 10:17:53 +00:00
10 lines
253 B
Go
10 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
|
|
}
|