mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
12 lines
187 B
Go
12 lines
187 B
Go
|
package missinggo
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
// Extracts the access time from the FileInfo internals.
|
||
|
func FileInfoAccessTime(fi os.FileInfo) time.Time {
|
||
|
return fileInfoAccessTime(fi)
|
||
|
}
|