Codebase list golang-github-anacrolix-missinggo / debian/2.1.0-6 atime.go
debian/2.1.0-6

Tree @debian/2.1.0-6 (Download .tar.gz)

atime.go @debian/2.1.0-6raw · history · blame

package missinggo

import (
	"os"
	"time"
)

// Extracts the access time from the FileInfo internals.
func FileInfoAccessTime(fi os.FileInfo) time.Time {
	return fileInfoAccessTime(fi)
}