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