aboutsummaryrefslogblamecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/configs/configload/inode_windows.go
blob: 0d22e6726426a9b0e6d613eb06f0a092abbfc867 (plain) (tree)
1
2
3
4
5
6
7
8







                                                    
// +build windows

package configload

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