常用类型及数据操作方法
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
135 B

  1. package helper
  2. import (
  3. "testing"
  4. )
  5. func Test_GenerateUUID(t *testing.T) {
  6. uuid, err := GenerateUUID()
  7. t.Log(uuid)
  8. t.Log(err)
  9. }