7a83473f00
Change-Id: I7411da2c92c72a24af98e007efe476d8a023db82
12 lines
294 B
Go
12 lines
294 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"`
|
|
}
|