mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-05 10:28:12 +00:00
12 lines
235 B
Go
12 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
|
|
)
|