blob: 33a46a5d4f81d5a93b31f1006f40443c58242927 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//+build darwin
package util
import (
"github.com/pkg/errors"
)
func GetContainerPidInformationDescriptors() ([]string, error) {
return []string{}, errors.New("this function is not supported on darwin")
}
|