Files
syncthing/Godeps/_workspace/src/github.com/calmh/du/diskusage.go
T
2015-08-09 10:37:23 +02:00

9 lines
233 B
Go

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