mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08:00
14 lines
141 B
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()
|
|
}
|