package utils import ( "github.com/google/uuid" "strings" ) func GetUUID() string { s := uuid.New().String() return strings.ReplaceAll(s, "-", "") }