mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-25 09:47:56 +00:00
15 lines
176 B
Go
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
|
|
}
|