Example #1
0
func getUuid() string {
	theUuid := uuid.NewV4()
	return uuid.Formatter(theUuid, uuid.Clean)
}
Example #2
0
func GenUuid() string {
	return uuid.Formatter(uuid.NewV4(), uuid.Clean)
}