github.com/kjmkznr/terraform@v0.5.2-0.20180216194316-1d0f5fdac99e/config/module/inode_windows.go (about)

     1  // +build windows
     2  
     3  package module
     4  
     5  // no syscall.Stat_t on windows, return 0 for inodes
     6  func inode(path string) (uint64, error) {
     7  	return 0, nil
     8  }