mirror of
https://github.com/containers/podman.git
synced 2026-03-11 03:12:01 -04:00
this is phase 2 for the removal of libpod from main. Signed-off-by: baude <bbaude@redhat.com>
12 lines
293 B
Go
12 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
|
|
}
|