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

     1  // Package ctime includes a utility for determining file-creation times.
     2  package ctime
     3  
     4  import (
     5  	"os"
     6  	"time"
     7  )
     8  
     9  // Created returns the file-creation time.
    10  func Created(fi os.FileInfo) time.Time {
    11  	return created(fi)
    12  }