blob: 47fa1031fac8f5adddc0e98aaf63caa1f99a779b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
}
|