mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-10 11:00:21 -05:00
9 lines
147 B
Go
9 lines
147 B
Go
// +build windows
|
|
|
|
package module
|
|
|
|
// no syscall.Stat_t on windows, return 0 for inodes
|
|
func inode(path string) (uint64, error) {
|
|
return 0, nil
|
|
}
|