mirror of
https://github.com/go-task/task.git
synced 2024-12-23 02:04:38 +02:00
10 lines
125 B
Go
10 lines
125 B
Go
|
// +build !windows
|
||
|
|
||
|
package watcher
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
func SameFile(fi1, fi2 os.FileInfo) bool {
|
||
|
return os.SameFile(fi1, fi2)
|
||
|
}
|