mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-07 09:25:43 +00:00
this is phase 2 for the removal of libpod from main. Signed-off-by: baude <bbaude@redhat.com>
11 lines
293 B
Go
11 lines
293 B
Go
package util
|
|
|
|
import (
|
|
"github.com/containers/psgo"
|
|
)
|
|
|
|
// GetContainerPidInformationDescriptors returns a string slice of all supported
|
|
// format descriptors of GetContainerPidInformation.
|
|
func GetContainerPidInformationDescriptors() ([]string, error) {
|
|
return psgo.ListDescriptors(), nil
|
|
}
|