This commit is contained in:
cdle
2021-10-28 14:24:08 +08:00
parent 9d43315545
commit fbe1fc84e8
5 changed files with 37 additions and 6 deletions
+10
View File
@@ -0,0 +1,10 @@
package core
import (
"github.com/google/uuid"
)
func GetUUID() string {
u2, _ := uuid.NewUUID()
return u2.String()
}