github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/configs/configload/inode_windows.go (about)

     1  // Copyright (c) HashiCorp, Inc.
     2  // SPDX-License-Identifier: MPL-2.0
     3  
     4  //go:build windows
     5  // +build windows
     6  
     7  package configload
     8  
     9  // no syscall.Stat_t on windows, return 0 for inodes
    10  func inode(path string) (uint64, error) {
    11  	return 0, nil
    12  }