push_common/util.go

8 lines
122 B
Go
Raw Normal View History

2025-01-27 12:53:40 +03:00
package push_common
import "strconv"
func uint32ToString(n uint32) string {
return strconv.FormatUint(uint64(n), 10)
}