1
0
mirror of https://github.com/go-task/task.git synced 2024-12-23 02:04:38 +02:00
task/vendor/github.com/radovskyb/watcher/samefile.go

10 lines
125 B
Go
Raw Normal View History

// +build !windows
package watcher
import "os"
func SameFile(fi1, fi2 os.FileInfo) bool {
return os.SameFile(fi1, fi2)
}