github.com/bfallik/terraform@v0.7.1-0.20160814101525-d3a4714efbf5/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  }