mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-11 10:07:53 +00:00
15 lines
149 B
Go
15 lines
149 B
Go
//go:build !linux && !darwin
|
|
|
|
package util
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func UID(st os.FileInfo) int {
|
|
return 0
|
|
}
|
|
|
|
func GID(st os.FileInfo) int {
|
|
return 0
|
|
}
|