summaryrefslogtreecommitdiff
path: root/vendor/github.com/hashicorp/terraform/config/module/inode_windows.go
blob: c0cf455385bbbf7da635504e8ba9585f39a398b3 (plain)
1
2
3
4
5
6
7
8
// +build windows

package module

// no syscall.Stat_t on windows, return 0 for inodes
func inode(path string) (uint64, error) {
	return 0, nil
}