Files
mstore/pkg/auxuuid/uuid.go
T
2026-01-26 18:36:30 +02:00

12 lines
166 B
Go

package auxuuid
import (
"github.com/google/uuid"
)
const ZeroUUID = "00000000-0000-0000-0000-000000000000"
func NewUUID() string {
return uuid.New().String()
}