mirror of
https://github.com/containers/podman.git
synced 2025-05-17 06:59:07 +08:00
12 lines
197 B
Go
12 lines
197 B
Go
//go:build darwin
|
|
|
|
package util
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func GetContainerPidInformationDescriptors() ([]string, error) {
|
|
return []string{}, errors.New("this function is not supported on darwin")
|
|
}
|