mirror of
https://github.com/restic/restic.git
synced 2026-09-24 21:10:30 +00:00
restic: extract Node filesystem code to fs package
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package fs
|
||||
|
||||
import "syscall"
|
||||
|
||||
func nodeRestoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s statT) atim() syscall.Timespec { return s.Atimespec }
|
||||
func (s statT) mtim() syscall.Timespec { return s.Mtimespec }
|
||||
func (s statT) ctim() syscall.Timespec { return s.Ctimespec }
|
||||
Reference in New Issue
Block a user