diskusage.go 233 B

12345678
  1. package du
  2. // Usage holds information about total and available storage on a volume.
  3. type Usage struct {
  4. TotalBytes int64 // Size of volume
  5. FreeBytes int64 // Unused size
  6. AvailBytes int64 // Available to a non-privileged user
  7. }