mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-09 02:15:41 +00:00
13 lines
141 B
Go
13 lines
141 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package ctime
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
func created(fi os.FileInfo) time.Time {
|
|
return fi.ModTime()
|
|
}
|