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