mirror of https://github.com/containers/podman.git
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
|
|
}
|