blob: c0cf455385bbbf7da635504e8ba9585f39a398b3 [file] [log] [blame]
// +build windows
package module
// no syscall.Stat_t on windows, return 0 for inodes
func inode(path string) (uint64, error) {
return 0, nil
}