podman-build/pkg/ctime/ctime_unsupported.go
2025-10-11 12:30:35 +09:00

13 lines
124 B
Go

//go:build !linux
package ctime
import (
"os"
"time"
)
func created(fi os.FileInfo) time.Time {
return fi.ModTime()
}