dapi / util /utils_test.go
sanbo
update sth. at 2024-12-24 12:41:40
8fb5936
raw
history blame
150 Bytes
package util
import (
"fmt"
"testing"
)
func TestRandomHexadecimalString(t *testing.T) {
var str = RandomHexadecimalString()
fmt.Println(str)
}