forked from golang/hotime
8 lines
109 B
Go
8 lines
109 B
Go
|
package util
|
||
|
|
||
|
import "github.com/chanxuehong/rand"
|
||
|
|
||
|
func NonceStr() string {
|
||
|
return string(rand.NewHex())
|
||
|
}
|