github.com/richardbowden/terraform@v0.6.12-0.20160901200758-30ea22c25211/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  }