//go:build !linux package localapi // statfsCapacity is Linux-only (syscall.Statfs); on other platforms (dev builds) it reports nothing. func statfsCapacity(string) (total, used int64, ok bool) { return 0, 0, false }