080ba47a06
Change-Id: I6a419c62700c568254ff67ae5b73efed2fc98aa2
11 lines
263 B
Go
11 lines
263 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"`
|
|
}
|