8 lines
122 B
Go
8 lines
122 B
Go
|
package push_common
|
||
|
|
||
|
import "strconv"
|
||
|
|
||
|
func uint32ToString(n uint32) string {
|
||
|
return strconv.FormatUint(uint64(n), 10)
|
||
|
}
|