uuid used

This commit is contained in:
2026-02-20 15:06:15 +02:00
parent 35e83ed705
commit 8546ad496f
31 changed files with 265 additions and 238 deletions
+4 -2
View File
@@ -13,8 +13,10 @@ import (
"github.com/google/uuid"
)
type UUID string
const ZeroUUID = "00000000-0000-0000-0000-000000000000"
func NewUUID() string {
return uuid.New().String()
func NewUUID() UUID {
return UUID(uuid.New().String())
}