mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 16:35:45 +00:00
11 lines
197 B
Go
11 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")
|
|
}
|