aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/internal/initwd/inode_windows.go
blob: 3ed58e4bf96d8ed6ea3c7f3471d0b2d4fcf1665d (plain) (blame)
1
2
3
4
5
6
7
8
// +build windows

package initwd

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