mirror of
https://github.com/docker/docs.git
synced 2026-03-29 07:18:51 +07:00
12 lines
202 B
Go
12 lines
202 B
Go
package archive
|
|
|
|
import "syscall"
|
|
|
|
func getLastAccess(stat *syscall.Stat_t) syscall.Timespec {
|
|
return stat.Atim
|
|
}
|
|
|
|
func getLastModification(stat *syscall.Stat_t) syscall.Timespec {
|
|
return stat.Mtim
|
|
}
|