mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-25 12:27:43 +08:00
12 lines
137 B
Go
12 lines
137 B
Go
package epictest
|
|
|
|
const (
|
|
_ = iota // ignore first value by assigning to blank identifier
|
|
KB = 1 << (10 * iota)
|
|
MB
|
|
GB
|
|
TB
|
|
PB
|
|
EB
|
|
)
|