1
0
mirror of https://github.com/go-task/task.git synced 2025-03-05 15:05:42 +02:00
Andrey Nering 0f24fd593e update dependencies
- add watch
- remove fsnotify
- update others
2017-08-05 14:13:35 -03:00

10 lines
125 B
Go

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