f5a8c5a45d
Signed-off-by: Michael Mayer <michael@photoprism.app>
12 lines
246 B
Go
12 lines
246 B
Go
package rnd
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// UUID returns a random string based on RFC 4122 (UUID Version 4) or panics.
|
|
//
|
|
// The strength of the UUID depends on the "crypto/rand" package.
|
|
func UUID() string {
|
|
return uuid.NewString()
|
|
}
|