mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 08:51:02 -06:00
9 lines
147 B
Go
9 lines
147 B
Go
// +build windows
|
|
|
|
package initwd
|
|
|
|
// no syscall.Stat_t on windows, return 0 for inodes
|
|
func inode(path string) (uint64, error) {
|
|
return 0, nil
|
|
}
|