micro/util/id/id_test.go

12 lines
141 B
Go
Raw Normal View History

package id
import "testing"
func TestUUIDv8(t *testing.T) {
id, err := New()
if err != nil {
t.Fatal(err)
}
t.Logf("xxx %s\n", id)
}