2f62cdf491
Change-Id: I44db26661a8dfb45b5d8e9fcb7511f63deb88cad
13 lines
330 B
Go
13 lines
330 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package console
|
|
|
|
// DiskSpaceInfo stores all info about storagenode disk space usage.
|
|
type DiskSpaceInfo struct {
|
|
Used int64 `json:"used"`
|
|
Available int64 `json:"available"`
|
|
Trash int64 `json:"trash"`
|
|
Overused int64 `json:"overused"`
|
|
}
|