3f15326248
Update github.com/aws/aws-sdk-go and github.com/hashicorp/go-discover to pick up support for EC2 Metadata Instance Service v2 changes. Follow up to https://github.com/hashicorp/go-discover/pull/128 .
13 lines
235 B
Go
13 lines
235 B
Go
package sdkio
|
|
|
|
const (
|
|
// Byte is 8 bits
|
|
Byte int64 = 1
|
|
// KibiByte (KiB) is 1024 Bytes
|
|
KibiByte = Byte * 1024
|
|
// MebiByte (MiB) is 1024 KiB
|
|
MebiByte = KibiByte * 1024
|
|
// GibiByte (GiB) is 1024 MiB
|
|
GibiByte = MebiByte * 1024
|
|
)
|