优化本地日志

This commit is contained in:
刘祥超
2022-04-10 15:57:36 +08:00
parent ad416dddec
commit 63e4e7cf9f
3 changed files with 101 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package sizes
const (
K int64 = 1024
M = 1024 * K
G = 1024 * M
T = 1024 * G
)