✏️ 优化代码结构

This commit is contained in:
fumiama
2021-12-21 22:09:43 +08:00
parent b953385bc5
commit 1d3a61386d
13 changed files with 136 additions and 364 deletions

8
utils/math/conv.go Normal file
View File

@@ -0,0 +1,8 @@
package math
import "strconv"
func Str2Int64(str string) int64 {
val, _ := strconv.ParseInt(str, 10, 64)
return val
}