# This is the 1st commit message: first commit # This is the commit message #2: fixed cache
9 lines
112 B
Go
9 lines
112 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
func GenerateUUID() string {
|
|
return uuid.New().String()
|
|
}
|