Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
configs
/
configload
/
inode_windows.go
blob: be26679a840d6f0088ca93a2c7a92753a79ef355 [
file
] [
log
] [
blame
]
//go:build windows
// +build windows
package configload
// no syscall.Stat_t on windows, return 0 for inodes
func inode(path string) (uint64, error) {
return 0, nil
}