github.com/paybyphone/terraform@v0.9.5-0.20170613192930-9706042ddd51/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  }