package melody import ( "crypto/md5" "fmt" uuid "github.com/hashicorp/go-uuid" ) func GenMsgId() string { s, _ := uuid.GenerateUUID() return fmt.Sprintf("%x", md5.Sum([]byte(s)))[:12] }