mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-13 00:36:28 +00:00
9 lines
233 B
Go
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
|
||
|
}
|