github.com/AbhinandanKurakure/podman/v3@v3.4.10/pkg/ctime/ctime_unsupported.go (about)

     1  // +build !linux
     2  
     3  package ctime
     4  
     5  import (
     6  	"os"
     7  	"time"
     8  )
     9  
    10  func created(fi os.FileInfo) time.Time {
    11  	return fi.ModTime()
    12  }