spiegel_podman/vendor/github.com/containers/buildah/util/util_windows.go
Danish Prakash 3b3cb1f958
vendor: update buildah to latest main
Signed-off-by: Danish Prakash <contact@danishpraka.sh>
2026-02-02 13:14:56 +05:30

15 lines
176 B
Go

//go:build !linux && !darwin
package util //nolint:revive,nolintlint
import (
"os"
)
func UID(st os.FileInfo) int {
return 0
}
func GID(st os.FileInfo) int {
return 0
}