13 lines
348 B
Go
13 lines
348 B
Go
|
// Copyright (C) 2018 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
package accounting
|
||
|
|
||
|
// data_type enums for accounting_raw and accounting_rollup
|
||
|
const (
|
||
|
// AtRest is the data_type representing at-rest data calculated from pointerdb
|
||
|
AtRest = iota
|
||
|
// Bandwidth is the data_type representing bandwidth allocation.
|
||
|
Bandwith = iota
|
||
|
)
|