f8a45b14d9
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
10 lines
163 B
Go
10 lines
163 B
Go
package rnd
|
|
|
|
import (
|
|
uuid "github.com/satori/go.uuid"
|
|
)
|
|
|
|
// UUID returns a standard, random UUID as string.
|
|
func UUID() string {
|
|
return uuid.NewV4().String()
|
|
}
|