mirror of
https://github.com/containers/podman.git
synced 2025-11-30 01:58:46 +08:00
16 lines
149 B
Go
16 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
|
|
}
|