podman/pkg/ctime/ctime_unsupported.go

14 lines
141 B
Go

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