github.com/minamijoyo/terraform@v0.7.8-0.20161029001309-18b3736ba44b/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  }