blob: be26679a840d6f0088ca93a2c7a92753a79ef355 [file] [log] [blame]
//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
}