mirror of
https://github.com/containers/podman.git
synced 2025-12-01 02:27:13 +08:00
As the title says. Vendor Buildah v1.27.0 into Podman in preparation for Buildah v4.2 [No New Tests Needed] Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
11 lines
149 B
Go
11 lines
149 B
Go
package util
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
)
|
|
|
|
func ReadUptime() (time.Duration, error) {
|
|
return 0, errors.New("readUptime not supported on darwin")
|
|
}
|