storj/storagenode/console/bandwidth.go
2019-10-04 18:17:28 +03:00

11 lines
262 B
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package console
// BandwidthInfo stores all info about storage node bandwidth usage
type BandwidthInfo struct {
Used int64 `json:"used"`
Available int64 `json:"available"`
}