mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00
13 lines
229 B
Go
13 lines
229 B
Go
//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")
|
|
}
|