Files
go-mqtt/utils/func.go
2024-08-21 17:14:00 +08:00

9 lines
136 B
Go

package utils
import "strconv"
// Int64toa Int64转换为String。
func Int64toa(v int64) string {
return strconv.FormatInt(v, 10)
}