storj/storagenode/console/diskspace.go
Egon Elbre 080ba47a06 all: fix dots
Change-Id: I6a419c62700c568254ff67ae5b73efed2fc98aa2
2020-07-16 14:58:28 +00:00

12 lines
295 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"`
}