mirror of
https://github.com/containers/podman.git
synced 2025-05-22 17:46:52 +08:00

this is phase 2 for the removal of libpod from main. Signed-off-by: baude <bbaude@redhat.com>
12 lines
210 B
Go
12 lines
210 B
Go
//+build darwin
|
|
|
|
package util
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func GetContainerPidInformationDescriptors() ([]string, error) {
|
|
return []string{}, errors.New("this function is not supported on darwin")
|
|
}
|