You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package xuuid |
|
|
|
import ( |
|
"github.com/google/uuid" |
|
"strings" |
|
) |
|
|
|
func UUID() string { |
|
u, err := uuid.NewUUID() |
|
if err != nil { |
|
return "" |
|
} |
|
return strings.Join(strings.Split(u.String(), "-"), "") |
|
}
|
|
|