micro/util/id/id_test.go
Vasiliy Tolstov 7ecff8bb18
Some checks failed
lint / lint (pull_request) Failing after 1m34s
test / test (pull_request) Successful in 3m35s
util/id: add uuid v8
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2024-12-22 19:06:37 +03:00

12 lines
141 B
Go

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