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