13 lines
193 B
Go
13 lines
193 B
Go
|
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]
|
||
|
}
|