//go:build windows package agent // statfsUsage is a compatibility fallback for Windows builds where // syscall.Statfs is unavailable. We return zero-sized stats instead of // failing compilation; disk health/usage can be extended with native APIs. func statfsUsage(path string) (total, free uint64, err error) { return 0, 0, nil }