We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8afb88 commit 5098d2fCopy full SHA for 5098d2f
pkg/uuid/uuid.go
@@ -26,5 +26,7 @@ type goUUID struct{}
26
27
// This function is responsible for generating UUID v4 of the google package.
28
func (g *goUUID) Generate() string {
29
- return uuid.NewString()
+ uuid, _ := uuid.NewV7()
30
+
31
+ return uuid.String()
32
}
0 commit comments