// Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: BUSL-1.1 //go:build windows // +build windows package configload // no syscall.Stat_t on windows, return 0 for inodes func inode(path string) (uint64, error) { return 0, nil }