Files
EdgeAPI/internal/utils/sizes/sizes.go

11 lines
156 B
Go
Raw Permalink Normal View History

2024-05-17 18:27:26 +08:00
// Copyright 2022 GoEdge CDN goedge.cdn@gmail.com. All rights reserved.
2022-04-10 15:57:36 +08:00
package sizes
const (
K int64 = 1024
M = 1024 * K
G = 1024 * M
T = 1024 * G
)