mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-19 13:59:39 +08:00
16 lines
209 B
Go
16 lines
209 B
Go
package utils
|
|
|
|
import (
|
|
"strconv"
|
|
)
|
|
|
|
func Int2Str(val int64) string {
|
|
str := strconv.FormatInt(val, 10)
|
|
return str
|
|
}
|
|
|
|
func Str2Int(str string) int64 {
|
|
val, _ := strconv.ParseInt(str, 10, 64)
|
|
return val
|
|
}
|